ModernUO/Projects/UOContent/Items/Aquarium/Rewards/Shell.cs
Kamron Batman 54d728a322
fix: Updates serialization to use v2.0 (#998)
- [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
2022-04-17 08:02:15 -07:00

23 lines
558 B
C#

using ModernUO.Serialization;
namespace Server.Items
{
[SerializationGenerator(0, false)]
public partial class Shell : Item
{
[Constructible]
public Shell() : base(Utility.Random(0x3B12, 2))
{
}
public override int LabelNumber => 1074598; // A shell
public override double DefaultWeight => 1.0;
public override void AddNameProperties(ObjectPropertyList list)
{
base.AddNameProperties(list);
list.Add(1073634); // An aquarium decoration
}
}
}