Reorganizes Project (#41)
This commit is contained in:
parent
08bf44af9a
commit
3614a66aee
3499 changed files with 79 additions and 55 deletions
62
Projects/Scripts/Items/Addons/FancyElvenTableSouthAddon.cs
Normal file
62
Projects/Scripts/Items/Addons/FancyElvenTableSouthAddon.cs
Normal file
|
|
@ -0,0 +1,62 @@
|
|||
namespace Server.Items
|
||||
{
|
||||
public class FancyElvenTableSouthAddon : BaseAddon
|
||||
{
|
||||
[Constructible]
|
||||
public FancyElvenTableSouthAddon()
|
||||
{
|
||||
AddComponent(new AddonComponent(0x3095), 0, 1, 0);
|
||||
AddComponent(new AddonComponent(0x3096), 0, 0, 0);
|
||||
AddComponent(new AddonComponent(0x3097), 0, -1, 0);
|
||||
}
|
||||
|
||||
public FancyElvenTableSouthAddon(Serial serial) : base(serial)
|
||||
{
|
||||
}
|
||||
|
||||
public override BaseAddonDeed Deed => new FancyElvenTableSouthDeed();
|
||||
|
||||
public override void Serialize(GenericWriter writer)
|
||||
{
|
||||
base.Serialize(writer);
|
||||
|
||||
writer.WriteEncodedInt(0); // version
|
||||
}
|
||||
|
||||
public override void Deserialize(GenericReader reader)
|
||||
{
|
||||
base.Deserialize(reader);
|
||||
|
||||
int version = reader.ReadEncodedInt();
|
||||
}
|
||||
}
|
||||
|
||||
public class FancyElvenTableSouthDeed : BaseAddonDeed
|
||||
{
|
||||
[Constructible]
|
||||
public FancyElvenTableSouthDeed()
|
||||
{
|
||||
}
|
||||
|
||||
public FancyElvenTableSouthDeed(Serial serial) : base(serial)
|
||||
{
|
||||
}
|
||||
|
||||
public override BaseAddon Addon => new FancyElvenTableSouthAddon();
|
||||
public override int LabelNumber => 1073385; // hardwood table (south)
|
||||
|
||||
public override void Serialize(GenericWriter writer)
|
||||
{
|
||||
base.Serialize(writer);
|
||||
|
||||
writer.WriteEncodedInt(0); // version
|
||||
}
|
||||
|
||||
public override void Deserialize(GenericReader reader)
|
||||
{
|
||||
base.Deserialize(reader);
|
||||
|
||||
int version = reader.ReadEncodedInt();
|
||||
}
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue