- [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
23 lines
562 B
C#
23 lines
562 B
C#
using ModernUO.Serialization;
|
|
|
|
namespace Server.Items
|
|
{
|
|
[SerializationGenerator(0, false)]
|
|
public partial class IslandStatue : Item
|
|
{
|
|
[Constructible]
|
|
public IslandStatue() : base(0x3B0F)
|
|
{
|
|
}
|
|
|
|
public override int LabelNumber => 1074600; // An island statue
|
|
public override double DefaultWeight => 1.0;
|
|
|
|
public override void AddNameProperties(ObjectPropertyList list)
|
|
{
|
|
base.AddNameProperties(list);
|
|
|
|
list.Add(1073634); // An aquarium decoration
|
|
}
|
|
}
|
|
}
|