Overwrite
Complete Overwrite of the Folder with the free shard. ServUO 57.3 has been added.
This commit is contained in:
95
Scripts/Items/Decorative/GargoyleShortTableAddon.cs
Normal file
95
Scripts/Items/Decorative/GargoyleShortTableAddon.cs
Normal file
@@ -0,0 +1,95 @@
|
||||
using System;
|
||||
|
||||
namespace Server.Items
|
||||
{
|
||||
public class GargoyleShortTableAddon : BaseAddon
|
||||
{
|
||||
public override BaseAddonDeed Deed
|
||||
{
|
||||
get
|
||||
{
|
||||
return new GargoyleShortTableDeed();
|
||||
}
|
||||
}
|
||||
|
||||
#region Mondain's Legacy
|
||||
public override bool RetainDeedHue
|
||||
{
|
||||
get
|
||||
{
|
||||
return true;
|
||||
}
|
||||
}
|
||||
#endregion
|
||||
|
||||
[Constructable]
|
||||
public GargoyleShortTableAddon()
|
||||
{
|
||||
this.AddComponent(new AddonComponent(0x4033), 0, 0, 0);
|
||||
this.AddComponent(new AddonComponent(0x4035), 0, 1, 0);
|
||||
this.AddComponent(new AddonComponent(0x4034), 1, 0, 0);
|
||||
this.AddComponent(new AddonComponent(0x4036), 1, 1, 0);
|
||||
}
|
||||
|
||||
public GargoyleShortTableAddon(Serial serial)
|
||||
: base(serial)
|
||||
{
|
||||
}
|
||||
|
||||
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 GargoyleShortTableDeed : BaseAddonDeed
|
||||
{
|
||||
public override BaseAddon Addon
|
||||
{
|
||||
get
|
||||
{
|
||||
return new GargoyleShortTableAddon();
|
||||
}
|
||||
}
|
||||
public override int LabelNumber
|
||||
{
|
||||
get
|
||||
{
|
||||
return 1095307;
|
||||
}
|
||||
}// large gargish bed (south)
|
||||
|
||||
[Constructable]
|
||||
public GargoyleShortTableDeed()
|
||||
{
|
||||
}
|
||||
|
||||
public GargoyleShortTableDeed(Serial serial)
|
||||
: base(serial)
|
||||
{
|
||||
}
|
||||
|
||||
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();
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user