Overwrite
Complete Overwrite of the Folder with the free shard. ServUO 57.3 has been added.
This commit is contained in:
64
Scripts/Items/Addons/FancyLoveseatEast.cs
Normal file
64
Scripts/Items/Addons/FancyLoveseatEast.cs
Normal file
@@ -0,0 +1,64 @@
|
||||
using System;
|
||||
using Server;
|
||||
|
||||
namespace Server.Items
|
||||
{
|
||||
[Furniture]
|
||||
public class FancyLoveseatEastAddon : BaseAddon
|
||||
{
|
||||
public override BaseAddonDeed Deed { get { return new FancyLoveseatEastDeed(); } }
|
||||
public override bool RetainDeedHue { get { return true; } }
|
||||
|
||||
[Constructable]
|
||||
public FancyLoveseatEastAddon()
|
||||
{
|
||||
AddComponent(new AddonComponent(0x4C88), 0, 0, 0);
|
||||
AddComponent(new AddonComponent(0x4C89), 0, 1, 0);
|
||||
}
|
||||
|
||||
public FancyLoveseatEastAddon(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();
|
||||
}
|
||||
}
|
||||
|
||||
public class FancyLoveseatEastDeed : BaseAddonDeed
|
||||
{
|
||||
public override BaseAddon Addon { get { return new FancyLoveseatEastAddon(); } }
|
||||
public override int LabelNumber { get { return 1154138; } } // Fancy Loveseat (East)
|
||||
|
||||
[Constructable]
|
||||
public FancyLoveseatEastDeed()
|
||||
{
|
||||
}
|
||||
|
||||
public FancyLoveseatEastDeed(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();
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user