Ejemplo n.º 1
0
 public void mend(Character target)
 {
     target.hp += 30;
     if (target.hp > target.getMaxHp())
         target.hp = target.getMaxHp();
 }