Overwrite
Complete Overwrite of the Folder with the free shard. ServUO 57.3 has been added.
This commit is contained in:
36
Scripts/Items/Containers/WinterGiftPackage2003.cs
Normal file
36
Scripts/Items/Containers/WinterGiftPackage2003.cs
Normal file
@@ -0,0 +1,36 @@
|
||||
using System;
|
||||
|
||||
namespace Server.Items
|
||||
{
|
||||
[Flipable(0x232A, 0x232B)]
|
||||
public class WinterGiftPackage2003 : GiftBox
|
||||
{
|
||||
[Constructable]
|
||||
public WinterGiftPackage2003()
|
||||
{
|
||||
this.DropItem(new Snowman());
|
||||
this.DropItem(new WreathDeed());
|
||||
this.DropItem(new BlueSnowflake());
|
||||
this.DropItem(new RedPoinsettia());
|
||||
}
|
||||
|
||||
public WinterGiftPackage2003(Serial serial)
|
||||
: base(serial)
|
||||
{
|
||||
}
|
||||
|
||||
public override void Serialize(GenericWriter writer)
|
||||
{
|
||||
base.Serialize(writer);
|
||||
|
||||
writer.Write((int)0); // version
|
||||
}
|
||||
|
||||
public override void Deserialize(GenericReader reader)
|
||||
{
|
||||
base.Deserialize(reader);
|
||||
|
||||
int version = reader.ReadInt();
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user