Server.Spells.MagerySpell.ConsumeReagents C# (CSharp) Méthode

ConsumeReagents() public méthode

public ConsumeReagents ( ) : bool
Résultat bool
		public override bool ConsumeReagents()
		{
			if( base.ConsumeReagents() )
				return true;

			if( ArcaneGem.ConsumeCharges( Caster, (1 + (int)Circle) ) )
				return true;

			return false;
		}