Cast("Heavy Strike", obj => TargetList.First(), ret =>
{
var monster = TargetList.First() as Monster;
if (monster == null)
return false;
//if (LokiPoe.CurrentLocalData.WorldAreaName == "The Ledge")
//return false;
// Cast single target DPS skill on these types of mobs.
if (!(monster.Rarity == Rarity.Rare || monster.Rarity == Rarity.Unique))
return false;
if (TargetList.Count(t => monster.Position.Distance(t.Position) < 15) >= 3)
return false;
return true;
}),