ModernUO/Projects/UOContent/Items/Addons/ElvenLoveseatSouthAddon.cs
Kamron Batman 4c265562bb
fix: Codgens more addons (#685)
* Fixes after deserialization not executing for older versions of an object
* Codegens more addons
2021-08-15 17:55:04 -07:00

27 lines
747 B
C#

namespace Server.Items
{
[Serializable(0)]
public partial class ElvenLoveseatSouthAddon : BaseAddon
{
[Constructible]
public ElvenLoveseatSouthAddon()
{
AddComponent(new AddonComponent(0x308A), 0, 0, 0);
AddComponent(new AddonComponent(0x308B), 0, -1, 0);
}
public override BaseAddonDeed Deed => new ElvenLoveseatSouthDeed();
}
[Serializable(0)]
public partial class ElvenLoveseatSouthDeed : BaseAddonDeed
{
[Constructible]
public ElvenLoveseatSouthDeed()
{
}
public override BaseAddon Addon => new ElvenLoveseatSouthAddon();
public override int LabelNumber => 1072867; // elven loveseat (south)
}
}