From 3bd10f09e9300a7fa315cbc89280c991efbf1aaf Mon Sep 17 00:00:00 2001 From: Bertie690 Date: Thu, 5 Jun 2025 13:59:51 -0400 Subject: [PATCH] Added edge case to rest about locales --- src/data/moves/move.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/data/moves/move.ts b/src/data/moves/move.ts index 90f1f22a6b9..e3f016c25be 100644 --- a/src/data/moves/move.ts +++ b/src/data/moves/move.ts @@ -8771,7 +8771,8 @@ export function initMoves() { .attr(HealAttr, 1, true) .attr(RestAttr, 3) .condition((user, target, move) => !user.isFullHp() && user.canSetStatus(StatusEffect.SLEEP, true, true, user)) - .triageMove(), + .triageMove() + .edgeCase(), // Lacks unique message in favor of displaying messages for both heal/status cure new AttackMove(MoveId.ROCK_SLIDE, PokemonType.ROCK, MoveCategory.PHYSICAL, 75, 90, 10, 30, 0, 1) .attr(FlinchAttr) .makesContact(false)