- [X] Deletes serialization annotations - [X] Updates to ModernUO.Serialization.Annotations nuget - [X] Updates serializer to v2.0 - [X] Changes all `Serializable()` to `SerializationGenerator()` - [X] Updates to schema generator v2.0
35 lines
879 B
C#
35 lines
879 B
C#
using ModernUO.Serialization;
|
|
|
|
namespace Server.Items
|
|
{
|
|
[SerializationGenerator(0, false)]
|
|
[Flippable(0x49CA, 0x49CB)]
|
|
public partial class HeartShapedBox : BaseContainer
|
|
{
|
|
private static int m_DropSound;
|
|
|
|
[Constructible]
|
|
public HeartShapedBox() : base(0x49CA)
|
|
{
|
|
}
|
|
|
|
public override int DefaultDropSound => m_DropSound;
|
|
|
|
public override bool OnDragDropInto(Mobile from, Item item, Point3D p)
|
|
{
|
|
PrepareSound(from);
|
|
return base.OnDragDropInto(from, item, p);
|
|
}
|
|
|
|
public override bool OnDragDrop(Mobile from, Item dropped)
|
|
{
|
|
PrepareSound(from);
|
|
return base.OnDragDrop(from, dropped);
|
|
}
|
|
|
|
private static void PrepareSound(Mobile from)
|
|
{
|
|
m_DropSound = from.Female ? 0x430 : 0x320;
|
|
}
|
|
}
|
|
}
|