Esempio n. 1
0
 private IEnumerable <Wait> OnSpellAttack(Attack attack)
 {
     if (attack.IsSpell())
     {
         attack.Damage *= 2;
     }
     return(Enumerable.Empty <Wait>());
 }