- [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
14 lines
354 B
C#
14 lines
354 B
C#
using ModernUO.Serialization;
|
|
|
|
namespace Server.Items
|
|
{
|
|
[SerializationGenerator(0, false)]
|
|
[Flippable(0x4F7C, 0x4F7D)]
|
|
public partial class CupidStatue : Item
|
|
{
|
|
[Constructible]
|
|
public CupidStatue() : base(0x4F7D) => LootType = LootType.Blessed;
|
|
|
|
public override int LabelNumber => 1099220; // cupid statue
|
|
}
|
|
}
|