18 lines
392 B
C#
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));
|
|
}
|
|
}
|
|
}
|