Ejemplo n.º 1
0
 @Override
 public void decrementWishCount() {
   if (wishCount > 0) {
     wishCount--;
     if (wishCount == 0) {
       activePokemon.setCurrHp(activePokemon.getCurrHp() + wishHealAmount);
       wishHealAmount = 0;
     }
   }
 }