Update Psychic Terrain hint (#11873)

This commit is contained in:
iforgetwhyimhere
2026-04-05 00:40:08 -04:00
committed by GitHub
parent efe5a68778
commit 856002f191
3 changed files with 3 additions and 3 deletions

View File

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

View File

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

View File

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