servuo/Scripts/Items/Containers/BoxOfCrystalItems.cs
TrueUO 62e5bf519d
Bug Fixes (#4856)
- Fixes an issue where certain items could be incorrectly chopped (deleted) with an ax.
-

Co-authored-by: TrueUO <knight.daniel.r@gmail.com>
2020-09-23 07:58:02 -07:00

44 lines
1.2 KiB
C#

namespace Server.Items
{
[Flipable(0x9AA, 0xE7D)]
public class BoxOfCrystalItems : BaseContainer
{
public override int LabelNumber => 1076712; // A Box of Crystal Items
public override int DefaultGumpID => 0x43;
[Constructable]
public BoxOfCrystalItems()
: base(0x9AA)
{
Weight = 4.0;
Hue = 1173;
DropItem(new CrystalAltarDeed());
DropItem(new CrystalBeggarStatueDeed());
DropItem(new CrystalBrazierDeed());
DropItem(new CrystalBullStatueDeed());
DropItem(new CrystalRunnerStatueDeed());
DropItem(new CrystalSupplicantStatueDeed());
DropItem(new CrystalTableDeed());
DropItem(new CrystalThroneDeed());
}
public BoxOfCrystalItems(Serial serial)
: base(serial)
{
}
public override void Serialize(GenericWriter writer)
{
base.Serialize(writer);
writer.Write(0); // version
}
public override void Deserialize(GenericReader reader)
{
base.Deserialize(reader);
int version = reader.ReadInt();
}
}
}