- [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
19 lines
415 B
C#
19 lines
415 B
C#
using ModernUO.Serialization;
|
|
|
|
namespace Server.Items
|
|
{
|
|
/*
|
|
first seen halloween 2009. subsequently in 2010,
|
|
2011 and 2012. GM Beggar-only Semi-Rare Treats
|
|
*/
|
|
[SerializationGenerator(0, false)]
|
|
public partial class GrimWarning : Item
|
|
{
|
|
[Constructible]
|
|
public GrimWarning() : base(0x42BD)
|
|
{
|
|
}
|
|
|
|
public override double DefaultWeight => 1;
|
|
}
|
|
}
|