servuo/Scripts/Items/Containers/RedVelvetGiftBox.cs
2020-04-16 18:41:32 -07:00

60 lines
No EOL
1.6 KiB
C#

/*
* Simply add this box with param true to create the entire valentine's 2007 package.
* Adding it with no params or false will create an empty box.
*/
namespace Server.Items
{
public class RedVelvetGiftBox : BaseContainer
{
[Constructable]
public RedVelvetGiftBox()
: this(false)
{
}
[Constructable]
public RedVelvetGiftBox(bool fill)
: base(0xE7A)
{
Hue = 0x20;
if (fill)
{
for (int i = 0; i < 5; i++)
{
AddToBox(new ValentinesCardSouth(), new Point3D(60 + (i * 10), 47, 0));
AddToBox(new ValentinesCardEast(), new Point3D(20 + (i * 10), 72, 0));
}
AddToBox(new Bacon(), new Point3D(90, 85, 0));
AddToBox(new RoseInAVase(), new Point3D(130, 55, 0));
}
}
public RedVelvetGiftBox(Serial serial)
: base(serial)
{
}
public override int DefaultGumpID => 0x3f;
public override int LabelNumber => 1077596;// A Red Velvet Box
public virtual void AddToBox(Item item, Point3D loc)
{
DropItem(item);
item.Location = loc;
}
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();
}
}
}