- [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
17 lines
397 B
C#
17 lines
397 B
C#
using ModernUO.Serialization;
|
|
|
|
namespace Server.Items
|
|
{
|
|
[SerializationGenerator(0)]
|
|
public partial class MysticalShortbow : MagicalShortbow
|
|
{
|
|
[Constructible]
|
|
public MysticalShortbow()
|
|
{
|
|
Attributes.SpellChanneling = 1;
|
|
Attributes.CastSpeed = -1;
|
|
}
|
|
|
|
public override int LabelNumber => 1073511; // mystical shortbow
|
|
}
|
|
}
|