ModernUO/Projects/UOContent/Items/Wands/FireballWand.cs
2021-08-22 01:30:27 -07:00

18 lines
392 B
C#

using Server.Spells.Third;
namespace Server.Items
{
[Serializable(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));
}
}
}