From 856002f191fbab9bded1ffda540d2da9b48b5737 Mon Sep 17 00:00:00 2001 From: iforgetwhyimhere Date: Sun, 5 Apr 2026 00:40:08 -0400 Subject: [PATCH] Update Psychic Terrain hint (#11873) --- data/mods/gen9ssb/moves.ts | 2 +- data/mods/teraoverride/moves.ts | 2 +- data/moves.ts | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/data/mods/gen9ssb/moves.ts b/data/mods/gen9ssb/moves.ts index 22bb504ca9..abfa25a8a6 100644 --- a/data/mods/gen9ssb/moves.ts +++ b/data/mods/gen9ssb/moves.ts @@ -6604,7 +6604,7 @@ export const Moves: import('../../../sim/dex-moves').ModdedMoveDataTable = { if (!target.isGrounded()) { const baseMove = this.dex.moves.get(effect.id); if (baseMove.priority > 0) { - this.hint("Psychic Terrain doesn't affect Pokémon immune to Ground."); + this.hint("Psychic Terrain doesn't affect airborne Pokémon."); } return; } diff --git a/data/mods/teraoverride/moves.ts b/data/mods/teraoverride/moves.ts index 90955d4d5c..5e8175440b 100644 --- a/data/mods/teraoverride/moves.ts +++ b/data/mods/teraoverride/moves.ts @@ -574,7 +574,7 @@ export const Moves: import('../../../sim/dex-moves').ModdedMoveDataTable = { if (!target.isGrounded()) { const baseMove = this.dex.moves.get(effect.id); if (baseMove.priority > 0) { - this.hint("Psychic Terrain doesn't affect Pokémon immune to Ground."); + this.hint("Psychic Terrain doesn't affect airborne Pokémon."); } return; } diff --git a/data/moves.ts b/data/moves.ts index b09213c5b8..6cccc05dc8 100644 --- a/data/moves.ts +++ b/data/moves.ts @@ -14159,7 +14159,7 @@ export const Moves: import('../sim/dex-moves').MoveDataTable = { if (!target.isGrounded()) { const baseMove = this.dex.moves.get(effect.id); if (baseMove.priority > 0) { - this.hint("Psychic Terrain doesn't affect Pokémon immune to Ground."); + this.hint("Psychic Terrain doesn't affect airborne Pokémon."); } return; }