fixed grammar

Co-authored-by: Jonas Pinson <jonas.pinson@gmail.com>
pull/633/head
Sbug98 2024-05-08 16:23:43 +02:00 committed by GitHub
parent cfd51fb2b7
commit 036755ca1b
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -2113,7 +2113,7 @@ export class PostTurnHurtIfSleepingAbAttr extends PostTurnAbAttr {
for(let oppo of pokemon.getOpponents()) {
if(oppo.status !== undefined && oppo.status.effect == StatusEffect.SLEEP) {
oppo.damageAndUpdate(Math.ceil(oppo.getMaxHp() * (1 / 8)), HitResult.OTHER);
pokemon.scene.queueMessage(getPokemonMessage(oppo, ' is tormeted!'));
pokemon.scene.queueMessage(getPokemonMessage(oppo, ' is tormented!'));
hadEffect = true;
}
}