Update bug-type-superfan-encounter.ts moves again

This commit is contained in:
damocleas 2025-04-28 14:00:29 -04:00 committed by GitHub
parent ca35995e0e
commit 4812312b76
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -145,12 +145,12 @@ const POOL_3_POKEMON: { species: Species; formIndex?: number }[] = [
const POOL_4_POKEMON = [Species.GENESECT, Species.SLITHER_WING, Species.BUZZWOLE, Species.PHEROMOSA]; const POOL_4_POKEMON = [Species.GENESECT, Species.SLITHER_WING, Species.BUZZWOLE, Species.PHEROMOSA];
const PHYSICAL_TUTOR_MOVES = [ const PHYSICAL_TUTOR_MOVES = [
Moves.PIN_MISSILE,
Moves.MEGAHORN, Moves.MEGAHORN,
Moves.X_SCISSOR, Moves.X_SCISSOR,
Moves.ATTACK_ORDER, Moves.ATTACK_ORDER,
Moves.BUG_BITE, Moves.BUG_BITE,
Moves.FIRST_IMPRESSION Moves.FIRST_IMPRESSION,
Moves.LUNGE
]; ];
const SPECIAL_TUTOR_MOVES = [ const SPECIAL_TUTOR_MOVES = [
@ -163,19 +163,19 @@ const SPECIAL_TUTOR_MOVES = [
const STATUS_TUTOR_MOVES = [ const STATUS_TUTOR_MOVES = [
Moves.STRING_SHOT, Moves.STRING_SHOT,
Moves.DEFEND_ORDER,
Moves.RAGE_POWDER, Moves.RAGE_POWDER,
Moves.STICKY_WEB, Moves.STICKY_WEB,
Moves.POWDER,
Moves.SILK_TRAP Moves.SILK_TRAP
]; ];
const MISC_TUTOR_MOVES = [ const MISC_TUTOR_MOVES = [
Moves.LEECH_LIFE, Moves.LEECH_LIFE,
Moves.U_TURN, Moves.U_TURN,
Moves.DEFEND_ORDER,
Moves.HEAL_ORDER, Moves.HEAL_ORDER,
Moves.QUIVER_DANCE, Moves.QUIVER_DANCE,
Moves.INFESTATION Moves.INFESTATION,
Moves.POUNCE
]; ];
/** /**