Beispiel #1
0
 public void sneak(BaseChar other) {
   removeMana(40);
   other.defenseMod -= other.defense; // makes total defense 0
   baseAttack(other);
   other.defenseMod += other.defense; // restore defenseMod
 }