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
This commit is contained in:
Tempoanon 2024-05-06 12:00:51 -04:00 committed by GitHub
parent f22c25d376
commit 78ae7c9f0a
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 3 additions and 2 deletions

View File

@ -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)

View File

@ -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,