Files
abysmal-isle/Scripts/Items/Addons/TheKingsCollection/TheTokenBox.cs
Unstable Kitsune b918192e4e Overwrite
Complete Overwrite of the Folder with the free shard. ServUO 57.3 has been added.
2023-11-28 23:20:26 -05:00

59 lines
1.8 KiB
C#

using System;
namespace Server.Items
{
[Flipable(0x4D0C, 0x4D0D)]
public class TheTokenBox : BaseContainer
{
public override int LabelNumber { get { return 1154209; } } // The King's Collection
public override int DefaultGumpID { get { return 0x4D0C; } }
[Constructable]
public TheTokenBox()
: base(0x4D0C)
{
Weight = 4.0;
DropItem(new FifteenthAnniversaryLithographDeed());
DropItem(new AlchemistsBookshelfDeed());
DropItem(new BarrelSpongeDeed());
DropItem(new BirdLampDeed());
DropItem(new BullTapestryDeed());
DropItem(new CactusSpongeDeed());
DropItem(new CastlePaintingDeed());
DropItem(new DragonLanternDeed());
DropItem(new EmbroideredTapestryDeed());
DropItem(new FirePaintingDeed());
DropItem(new FluffySpongeDeed());
DropItem(new FourPostBedDeed());
DropItem(new GoldenTableDeed());
DropItem(new HorsePaintingDeed());
DropItem(new KoiLampDeed());
DropItem(new MarbleTableDeed());
DropItem(new MonasteryBellDeed());
DropItem(new OrnateBedDeed());
DropItem(new ShelfSpongeDeed());
DropItem(new ShipPaintingDeed());
DropItem(new TallLampDeed());
}
public TheTokenBox(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();
}
}
}