Update bug-type-superfan-encounter.test.ts

This commit is contained in:
damocleas 2025-04-28 14:32:09 -04:00 committed by GitHub
parent 86fd745e8c
commit e568c2e3b8
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -120,22 +120,34 @@ const PHYSICAL_TUTOR_MOVES = [
Moves.MEGAHORN, Moves.MEGAHORN,
Moves.X_SCISSOR, Moves.X_SCISSOR,
Moves.ATTACK_ORDER, Moves.ATTACK_ORDER,
Moves.PIN_MISSILE, Moves.BUG_BITE,
Moves.FIRST_IMPRESSION, Moves.FIRST_IMPRESSION,
Moves.LUNGE
]; ];
const SPECIAL_TUTOR_MOVES = [Moves.SILVER_WIND, Moves.BUG_BUZZ, Moves.SIGNAL_BEAM, Moves.POLLEN_PUFF]; const SPECIAL_TUTOR_MOVES = [
Moves.SILVER_WIND,
Moves.SIGNAL_BEAM,
Moves.BUG_BUZZ,
Moves.POLLEN_PUFF,
Moves.STRUGGLE_BUG
];
const STATUS_TUTOR_MOVES = [Moves.STRING_SHOT, Moves.STICKY_WEB, Moves.SILK_TRAP, Moves.RAGE_POWDER, Moves.HEAL_ORDER]; const STATUS_TUTOR_MOVES = [
Moves.STRING_SHOT,
Moves.DEFEND_ORDER,
Moves.RAGE_POWDER,
Moves.STICKY_WEB,
Moves.SILK_TRAP
];
const MISC_TUTOR_MOVES = [ const MISC_TUTOR_MOVES = [
Moves.BUG_BITE,
Moves.LEECH_LIFE, Moves.LEECH_LIFE,
Moves.DEFEND_ORDER,
Moves.QUIVER_DANCE,
Moves.TAIL_GLOW,
Moves.INFESTATION,
Moves.U_TURN, Moves.U_TURN,
Moves.HEAL_ORDER,
Moves.QUIVER_DANCE,
Moves.INFESTATION,
Moves.POUNCE
]; ];
describe("Bug-Type Superfan - Mystery Encounter", () => { describe("Bug-Type Superfan - Mystery Encounter", () => {