예제 #1
0
 public override void Execute()
 {
     Attacker.OnAttack(this);
     Target.ApplyDamage(Power, Type);
     Target.OnAttacked(this);
 }
예제 #2
0
 protected void Apply(ITargetable target)
 {
     target.ApplyDamage(Damage, AttackBattleAction.DamageType.Ability);
     target.DeathCheck();
 }