// Spectral Blade
if (CanCast(SNOPower.Wizard_SpectralBlade))
{
if(Sets.DelseresMagnumOpus.IsFullyEquipped && Skills.Wizard.ArcaneOrb.IsActive &&
TargetUtil.AnyMobsInRangeOfPosition(Player.Position, 5f, 1) == false) {
Skills.Wizard.SpectralBlade.Cast(); // try to get some shields before we move
return new TrinityPower(SNOPower.Walk, CurrentTarget.RadiusDistance, CurrentTarget.Position);
} else {
return new TrinityPower(SNOPower.Wizard_SpectralBlade, 10f, CurrentTarget.ACDGuid);
}
}