18 lines
No EOL
369 B
C#
18 lines
No EOL
369 B
C#
using ModernUO.Serialization;
|
|
using Server.Spells.Second;
|
|
|
|
namespace Server.Items;
|
|
|
|
[SerializationGenerator(0, false)]
|
|
public partial class HarmWand : BaseWand
|
|
{
|
|
[Constructible]
|
|
public HarmWand() : base(WandEffect.Harming, 5, Core.ML ? 109 : 30)
|
|
{
|
|
}
|
|
|
|
public override void OnWandUse(Mobile from)
|
|
{
|
|
Cast(new HarmSpell(from, this));
|
|
}
|
|
} |