From 78ae7c9f0a647d35f3ecc5ae2ed400efc3318ece Mon Sep 17 00:00:00 2001 From: Tempoanon <163687446+TempsRay@users.noreply.github.com> Date: Mon, 6 May 2024 12:00:51 -0400 Subject: [PATCH] Minor TM learn fixes and make glacial lance non contact (#553) * Make curse target * Minor TM learn set changes and make glacial lance non contact --- src/data/move.ts | 3 ++- src/data/tms.ts | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/src/data/move.ts b/src/data/move.ts index a4ca1e422dc..0b7b1e33c62 100644 --- a/src/data/move.ts +++ b/src/data/move.ts @@ -6203,7 +6203,8 @@ export function initMoves() { new AttackMove(Moves.THUNDEROUS_KICK, Type.FIGHTING, MoveCategory.PHYSICAL, 90, 100, 10, 100, 0, 8) .attr(StatChangeAttr, BattleStat.DEF, -1), new AttackMove(Moves.GLACIAL_LANCE, Type.ICE, MoveCategory.PHYSICAL, 120, 100, 5, -1, 0, 8) - .target(MoveTarget.ALL_NEAR_ENEMIES), + .target(MoveTarget.ALL_NEAR_ENEMIES) + .makesContact(false), new AttackMove(Moves.ASTRAL_BARRAGE, Type.GHOST, MoveCategory.SPECIAL, 120, 100, 5, -1, 0, 8) .target(MoveTarget.ALL_NEAR_ENEMIES), new AttackMove(Moves.EERIE_SPELL, Type.PSYCHIC, MoveCategory.SPECIAL, 80, 100, 5, 100, 0, 8) diff --git a/src/data/tms.ts b/src/data/tms.ts index 332eb2234b1..eeccd9310a3 100644 --- a/src/data/tms.ts +++ b/src/data/tms.ts @@ -51855,7 +51855,6 @@ export const tmSpecies: TmSpecies = { Species.MABOSSTIFF, Species.BOMBIRDIER, Species.WALKING_WAKE, - Species.PIKACHU, Species.ALOLA_SANDSHREW, Species.ALOLA_SANDSLASH, Species.ALOLA_DIGLETT, @@ -60029,6 +60028,7 @@ export const tmSpecies: TmSpecies = { Species.SHARPEDO, Species.SEVIPER, Species.SALAMENCE, + Species.METAGROSS, Species.SHINX, Species.LUXIO, Species.LUXRAY,