ModernUO/Projects/UOContent/Items/Addons/ElvenLoveseatEastAddon.cs
Kamron Batman 2253a2332c
fix: Fixes ML containers and addons (#804)
* Fixes some ML addons so they are containers
* Adds some missing ML artifacts
* Fixes carpentry gump crafting entries
2021-09-26 18:54:33 -07:00

27 lines
740 B
C#

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