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; }