- [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
440 B
C#
19 lines
440 B
C#
using ModernUO.Serialization;
|
|
using Server.Spells.First;
|
|
|
|
namespace Server.Items
|
|
{
|
|
[SerializationGenerator(0, false)]
|
|
public partial class MagicArrowWand : BaseWand
|
|
{
|
|
[Constructible]
|
|
public MagicArrowWand() : base(WandEffect.MagicArrow, 5, Core.ML ? 109 : 30)
|
|
{
|
|
}
|
|
|
|
public override void OnWandUse(Mobile from)
|
|
{
|
|
Cast(new MagicArrowSpell(from, this));
|
|
}
|
|
}
|
|
}
|