- [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
16 lines
381 B
C#
16 lines
381 B
C#
using ModernUO.Serialization;
|
|
|
|
namespace Server.Items
|
|
{
|
|
[SerializationGenerator(0, false)]
|
|
public partial class NoxCrystal : BaseReagent, ICommodity
|
|
{
|
|
[Constructible]
|
|
public NoxCrystal(int amount = 1) : base(0xF8E, amount)
|
|
{
|
|
}
|
|
|
|
int ICommodity.DescriptionNumber => LabelNumber;
|
|
bool ICommodity.IsDeedable => true;
|
|
}
|
|
}
|