ModernUO/Scripts/Items/Special/Valentines/2007/RedVelvetGiftBox.cs
2018-09-14 08:41:38 -07:00

64 lines
1.3 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
{
public override int DefaultGumpID => 0x3f;
public override int LabelNumber => 1077596; // A Red Velvet Box
[Constructible]
public RedVelvetGiftBox()
: this( false )
{
}
[Constructible]
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 virtual void AddToBox(Item item, Point3D loc)
{
DropItem(item);
item.Location = loc;
}
public RedVelvetGiftBox( 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();
}
}
}