This commit is contained in:
mark 2009-05-16 20:07:15 +00:00
parent 2c723b90fc
commit 3dcaed01ba
9 changed files with 153 additions and 57 deletions

View file

@ -1,5 +1,6 @@
using System;
using Server;
using Server.Items;
namespace Server.Spells.Necromancy
{
@ -36,6 +37,17 @@ namespace Server.Spells.Necromancy
max = RequiredSkill + 40.0;
}
public override bool ConsumeReagents()
{
if( base.ConsumeReagents() )
return true;
if( ArcaneGem.ConsumeCharges( Caster, (Core.SE ? 1 : 1 + (int)Circle) ) )
return true;
return false;
}
public override int GetMana()
{
return RequiredMana;