mirror of
https://github.com/ServUO/ServUO
synced 2026-08-11 20:23:04 -04:00
- Fixes an issue where certain items could be incorrectly chopped (deleted) with an ax. - Co-authored-by: TrueUO <knight.daniel.r@gmail.com>
44 lines
1.2 KiB
C#
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();
|
|
}
|
|
}
|
|
}
|