ModernUO/Projects/UOContent/Items/Wands/FireballWand.cs
2023-08-25 20:44:37 -07:00

18 lines
No EOL
381 B
C#

using ModernUO.Serialization;
using Server.Spells.Third;
namespace Server.Items;
[SerializationGenerator(0, false)]
public partial class FireballWand : BaseWand
{
[Constructible]
public FireballWand() : base(WandEffect.Fireball, 5, Core.ML ? 109 : 15)
{
}
public override void OnWandUse(Mobile from)
{
Cast(new FireballSpell(from, this));
}
}