diff --git a/src/data/move.ts b/src/data/move.ts index 38d7d810bbb..41e627d9467 100644 --- a/src/data/move.ts +++ b/src/data/move.ts @@ -1230,7 +1230,7 @@ export enum Moves { HARD_PRESS, DRAGON_CHEER, ALLURING_VOICE, - TEMPER_FLAME, + TEMPER_FLARE, SUPERCELL_SLAM, PSYCHIC_NOISE, UPPER_HAND, @@ -4943,12 +4943,15 @@ export function initMoves() { .attr(MultiHitAttr, MultiHitType._2), new AttackMove(Moves.HARD_PRESS, "Hard Press", Type.STEEL, MoveCategory.PHYSICAL, 100, 100, 5, -1, "The target is crushed with an arm, a claw, or the like to inflict damage. The more HP the target has left, the greater the move's power.", -1, 0, 9) .attr(OpponentHighHpPowerAttr), - new StatusMove(Moves.DRAGON_CHEER, "Dragon Cheer (N)", Type.DRAGON, -1, 15, -1, "The user raises its allies' morale with a draconic cry so that their future attacks have a heightened chance of landing critical hits. This rouses Dragon types more.", 100, 0, 9), + new StatusMove(Moves.DRAGON_CHEER, "Dragon Cheer (P)", Type.DRAGON, -1, 15, -1, "The user raises its allies' morale with a draconic cry so that their future attacks have a heightened chance of landing critical hits. This rouses Dragon types more.", 100, 0, 9) + .attr(AddBattlerTagAttr, BattlerTagType.CRIT_BOOST, false, undefined, true) + .target(MoveTarget.NEAR_ALLY), new AttackMove(Moves.ALLURING_VOICE, "Alluring Voice (N)", Type.FAIRY, MoveCategory.SPECIAL, 80, 100, 10, -1, "The user attacks the target using its angelic voice. This also confuses the target if its stats have been boosted during the turn.", -1, 0, 9), - new AttackMove(Moves.TEMPER_FLAME, "Temper Flame (N)", Type.FIRE, MoveCategory.PHYSICAL, 75, 100, 10, -1, "Spurred by desperation, the user attacks the target. This move's power is doubled if the user's previous move failed.", -1, 0, 9), + new AttackMove(Moves.TEMPER_FLARE, "Temper Flare (N)", Type.FIRE, MoveCategory.PHYSICAL, 75, 100, 10, -1, "Spurred by desperation, the user attacks the target. This move's power is doubled if the user's previous move failed.", -1, 0, 9), new AttackMove(Moves.SUPERCELL_SLAM, "Supercell Slam", Type.ELECTRIC, MoveCategory.PHYSICAL, 100, 95, 15, -1, "The user electrifies its body and drops onto the target to inflict damage. If this move misses, the user takes damage instead.", -1, 0, 9) .attr(MissEffectAttr, (user: Pokemon, move: Move) => { user.damage(Math.floor(user.getMaxHp() / 2)); return true; }), - new AttackMove(Moves.PSYCHIC_NOISE, "Psychic Noise (N)", Type.PSYCHIC, MoveCategory.SPECIAL, 75, 100, 10, -1, "The user attacks the target with unpleasant sound waves. For two turns, the target is prevented from recovering HP through moves, Abilities, or held items.", -1, 0, 9), + new AttackMove(Moves.PSYCHIC_NOISE, "Psychic Noise (N)", Type.PSYCHIC, MoveCategory.SPECIAL, 75, 100, 10, -1, "The user attacks the target with unpleasant sound waves. For two turns, the target is prevented from recovering HP through moves, Abilities, or held items.", -1, 0, 9) + .soundBased(), new AttackMove(Moves.UPPER_HAND, "Upper Hand (N)", Type.FIGHTING, MoveCategory.PHYSICAL, 65, 100, 15, -1, "The user reacts to the target's movement and strikes with the heel of its palm, making the target flinch. This move fails if the target is not readying a priority move.", -1, 0, 9), new AttackMove(Moves.MALIGNANT_CHAIN, "Malignant Chain", Type.POISON, MoveCategory.SPECIAL, 100, 100, 5, -1, "The user pours toxins into the target by wrapping them in a toxic, corrosive chain. This may also leave the target badly poisoned.", 50, 0, 9) .attr(StatusEffectAttr, StatusEffect.TOXIC) diff --git a/src/data/tms.ts b/src/data/tms.ts index 636d8164c68..65496eb62d4 100644 --- a/src/data/tms.ts +++ b/src/data/tms.ts @@ -8,7 +8,6 @@ interface TmSpecies { export const reverseCompatibleTms: Moves[] = [];/*[ Moves.TAKE_DOWN, - Moves.DOUBLE_EDGE, Moves.TOXIC, Moves.RAGE, Moves.MIMIC, @@ -17,7 +16,6 @@ export const reverseCompatibleTms: Moves[] = [];/*[ Moves.REST, Moves.SUBSTITUTE, Moves.SNORE, - Moves.CURSE, Moves.PROTECT, Moves.ENDURE, Moves.SWAGGER, @@ -2842,6 +2840,503 @@ export const tmSpecies: TmSpecies = { Species.PALDEA_TAUROS, Species.PALDEA_WOOPER, ], + [Moves.DOUBLE_EDGE]: [ + Species.BULBASAUR, + Species.IVYSAUR, + Species.VENUSAUR, + Species.CHARMANDER, + Species.CHARMELEON, + Species.CHARIZARD, + Species.SQUIRTLE, + Species.WARTORTLE, + Species.BLASTOISE, + Species.PIDGEY, + Species.PIDGEOTTO, + Species.PIDGEOT, + Species.RATTATA, + Species.RATICATE, + Species.SPEAROW, + Species.FEAROW, + Species.EKANS, + Species.ARBOK, + Species.PIKACHU, + Species.RAICHU, + Species.SANDSHREW, + Species.SANDSLASH, + Species.NIDORAN_F, + Species.NIDORINA, + Species.NIDOQUEEN, + Species.NIDORAN_M, + Species.NIDORINO, + Species.NIDOKING, + Species.CLEFAIRY, + Species.CLEFABLE, + Species.VULPIX, + Species.NINETALES, + Species.JIGGLYPUFF, + Species.WIGGLYTUFF, + Species.ZUBAT, + Species.GOLBAT, + Species.ODDISH, + Species.GLOOM, + Species.VILEPLUME, + Species.PARAS, + Species.PARASECT, + Species.VENONAT, + Species.VENOMOTH, + Species.DIGLETT, + Species.DUGTRIO, + Species.MEOWTH, + Species.PERSIAN, + Species.PSYDUCK, + Species.GOLDUCK, + Species.MANKEY, + Species.PRIMEAPE, + Species.GROWLITHE, + Species.ARCANINE, + Species.POLIWAG, + Species.POLIWHIRL, + Species.POLIWRATH, + Species.ABRA, + Species.KADABRA, + Species.ALAKAZAM, + Species.MACHOP, + Species.MACHOKE, + Species.MACHAMP, + Species.BELLSPROUT, + Species.WEEPINBELL, + Species.VICTREEBEL, + Species.TENTACOOL, + Species.TENTACRUEL, + Species.GEODUDE, + Species.GRAVELER, + Species.GOLEM, + Species.PONYTA, + Species.RAPIDASH, + Species.SLOWPOKE, + Species.SLOWBRO, + Species.MAGNEMITE, + Species.MAGNETON, + Species.FARFETCHD, + Species.DODUO, + Species.DODRIO, + Species.SEEL, + Species.DEWGONG, + Species.SHELLDER, + Species.CLOYSTER, + Species.GENGAR, + Species.ONIX, + Species.DROWZEE, + Species.HYPNO, + Species.KRABBY, + Species.KINGLER, + Species.VOLTORB, + Species.ELECTRODE, + Species.EXEGGCUTE, + Species.EXEGGUTOR, + Species.CUBONE, + Species.MAROWAK, + Species.HITMONLEE, + Species.HITMONCHAN, + Species.LICKITUNG, + Species.RHYHORN, + Species.RHYDON, + Species.CHANSEY, + Species.TANGELA, + Species.KANGASKHAN, + Species.HORSEA, + Species.SEADRA, + Species.GOLDEEN, + Species.SEAKING, + Species.STARYU, + Species.STARMIE, + Species.MR_MIME, + Species.SCYTHER, + Species.JYNX, + Species.ELECTABUZZ, + Species.MAGMAR, + Species.PINSIR, + Species.TAUROS, + Species.GYARADOS, + Species.LAPRAS, + Species.EEVEE, + Species.VAPOREON, + Species.JOLTEON, + Species.FLAREON, + Species.PORYGON, + Species.OMANYTE, + Species.OMASTAR, + Species.KABUTO, + Species.KABUTOPS, + Species.AERODACTYL, + Species.SNORLAX, + Species.ARTICUNO, + Species.ZAPDOS, + Species.MOLTRES, + Species.DRATINI, + Species.DRAGONAIR, + Species.DRAGONITE, + Species.MEWTWO, + Species.MEW, + Species.CHIKORITA, + Species.BAYLEEF, + Species.MEGANIUM, + Species.CYNDAQUIL, + Species.QUILAVA, + Species.TYPHLOSION, + Species.TOTODILE, + Species.CROCONAW, + Species.FERALIGATR, + Species.SENTRET, + Species.FURRET, + Species.NOCTOWL, + Species.CROBAT, + Species.CHINCHOU, + Species.LANTURN, + Species.IGGLYBUFF, + Species.MAREEP, + Species.FLAAFFY, + Species.AMPHAROS, + Species.BELLOSSOM, + Species.MARILL, + Species.AZUMARILL, + Species.SUDOWOODO, + Species.POLITOED, + Species.HOPPIP, + Species.SKIPLOOM, + Species.JUMPLUFF, + Species.AIPOM, + Species.SUNKERN, + Species.SUNFLORA, + Species.YANMA, + Species.WOOPER, + Species.QUAGSIRE, + Species.ESPEON, + Species.UMBREON, + Species.MURKROW, + Species.SLOWKING, + Species.GIRAFARIG, + Species.PINECO, + Species.FORRETRESS, + Species.DUNSPARCE, + Species.GLIGAR, + Species.STEELIX, + Species.SNUBBULL, + Species.GRANBULL, + Species.QWILFISH, + Species.SCIZOR, + Species.HERACROSS, + Species.TEDDIURSA, + Species.URSARING, + Species.SWINUB, + Species.PILOSWINE, + Species.HOUNDOUR, + Species.HOUNDOOM, + Species.KINGDRA, + Species.PHANPY, + Species.DONPHAN, + Species.PORYGON2, + Species.STANTLER, + Species.HITMONTOP, + Species.ELEKID, + Species.MAGBY, + Species.BLISSEY, + Species.RAIKOU, + Species.ENTEI, + Species.SUICUNE, + Species.LARVITAR, + Species.PUPITAR, + Species.TYRANITAR, + Species.LUGIA, + Species.HO_OH, + Species.SCEPTILE, + Species.TORCHIC, + Species.COMBUSKEN, + Species.BLAZIKEN, + Species.MUDKIP, + Species.MARSHTOMP, + Species.SWAMPERT, + Species.POOCHYENA, + Species.MIGHTYENA, + Species.LOTAD, + Species.LOMBRE, + Species.LUDICOLO, + Species.SEEDOT, + Species.NUZLEAF, + Species.SHIFTRY, + Species.VIGOROTH, + Species.SLAKING, + Species.MAKUHITA, + Species.HARIYAMA, + Species.NOSEPASS, + Species.VOLBEAT, + Species.ILLUMISE, + Species.SWALOT, + Species.NUMEL, + Species.CAMERUPT, + Species.TORKOAL, + Species.FLYGON, + Species.ALTARIA, + Species.ZANGOOSE, + Species.SEVIPER, + Species.BARBOACH, + Species.WHISCASH, + Species.CORPHISH, + Species.CRAWDAUNT, + Species.FEEBAS, + Species.MILOTIC, + Species.TROPIUS, + Species.CHIMECHO, + Species.BAGON, + Species.SHELGON, + Species.SALAMENCE, + Species.METANG, + Species.METAGROSS, + Species.REGIROCK, + Species.REGISTEEL, + Species.LATIAS, + Species.LATIOS, + Species.KYOGRE, + Species.GROUDON, + Species.RAYQUAZA, + Species.JIRACHI, + Species.TURTWIG, + Species.GROTLE, + Species.TORTERRA, + Species.CHIMCHAR, + Species.MONFERNO, + Species.INFERNAPE, + Species.PRINPLUP, + Species.EMPOLEON, + Species.STARLY, + Species.STARAVIA, + Species.STARAPTOR, + Species.SHINX, + Species.LUXIO, + Species.LUXRAY, + Species.CRANIDOS, + Species.RAMPARDOS, + Species.SHIELDON, + Species.BASTIODON, + Species.FLOATZEL, + Species.AMBIPOM, + Species.HONCHKROW, + Species.CHINGLING, + Species.STUNKY, + Species.SKUNTANK, + Species.BONSLY, + Species.GIBLE, + Species.GABITE, + Species.GARCHOMP, + Species.MUNCHLAX, + Species.HIPPOPOTAS, + Species.HIPPOWDON, + Species.SNOVER, + Species.ABOMASNOW, + Species.MAGNEZONE, + Species.LICKILICKY, + Species.RHYPERIOR, + Species.TANGROWTH, + Species.ELECTIVIRE, + Species.MAGMORTAR, + Species.YANMEGA, + Species.LEAFEON, + Species.GLACEON, + Species.GLISCOR, + Species.MAMOSWINE, + Species.PORYGON_Z, + Species.PROBOPASS, + Species.MESPRIT, + Species.AZELF, + Species.REGIGIGAS, + Species.SHAYMIN, + Species.ARCEUS, + Species.SNIVY, + Species.SERVINE, + Species.SERPERIOR, + Species.TEPIG, + Species.PIGNITE, + Species.EMBOAR, + Species.BLITZLE, + Species.ZEBSTRIKA, + Species.DRILBUR, + Species.EXCADRILL, + Species.TIMBURR, + Species.GURDURR, + Species.CONKELDURR, + Species.BASCULIN, + Species.SANDILE, + Species.KROKOROK, + Species.KROOKODILE, + Species.SCRAGGY, + Species.SCRAFTY, + Species.CINCCINO, + Species.DUCKLETT, + Species.SWANNA, + Species.DEERLING, + Species.SAWSBUCK, + Species.AXEW, + Species.FRAXURE, + Species.HAXORUS, + Species.BEARTIC, + Species.MIENSHAO, + Species.GOLETT, + Species.GOLURK, + Species.RUFFLET, + Species.BRAVIARY, + Species.VULLABY, + Species.MANDIBUZZ, + Species.LARVESTA, + Species.VOLCARONA, + Species.COBALION, + Species.TERRAKION, + Species.VIRIZION, + Species.RESHIRAM, + Species.ZEKROM, + Species.KELDEO, + Species.CHESNAUGHT, + Species.FLETCHLING, + Species.FLETCHINDER, + Species.TALONFLAME, + Species.LITLEO, + Species.PYROAR, + Species.SKIDDO, + Species.GOGOAT, + Species.SYLVEON, + Species.CARBINK, + Species.GOURGEIST, + Species.BERGMITE, + Species.AVALUGG, + Species.NOIVERN, + Species.VOLCANION, + Species.LITTEN, + Species.TORRACAT, + Species.INCINEROAR, + Species.YUNGOOS, + Species.GUMSHOOS, + Species.ROCKRUFF, + Species.LYCANROC, + Species.MUDBRAY, + Species.MUDSDALE, + Species.PASSIMIAN, + Species.MINIOR, + Species.KOMALA, + Species.HAKAMO_O, + Species.KOMMO_O, + Species.SOLGALEO, + Species.THWACKEY, + Species.RILLABOOM, + Species.SCORBUNNY, + Species.RABOOT, + Species.CINDERACE, + Species.SKWOVET, + Species.GREEDENT, + Species.CORVIKNIGHT, + Species.DREDNAW, + Species.ARROKUDA, + Species.BARRASKEWDA, + Species.PERRSERKER, + Species.EISCUE, + Species.MORPEKO, + Species.CUFANT, + Species.COPPERAJAH, + Species.DURALUDON, + Species.DRAKLOAK, + Species.DRAGAPULT, + Species.KUBFU, + Species.URSHIFU, + Species.ZARUDE, + Species.GLASTRIER, + Species.SPECTRIER, + [ + Species.CALYREX, + 'ice', + 'shadow', + ], + Species.WYRDEER, + Species.KLEAVOR, + Species.URSALUNA, + Species.BASCULEGION, + Species.OVERQWIL, + Species.LECHONK, + Species.OINKOLOGNE, + Species.LOKIX, + Species.PAWMOT, + Species.TANDEMAUS, + Species.MAUSHOLD, + Species.FIDOUGH, + Species.DACHSBUN, + Species.SQUAWKABILLY, + Species.NACLSTACK, + Species.GARGANACL, + Species.MASCHIFF, + Species.MABOSSTIFF, + Species.SHROODLE, + Species.GRAFAIAI, + Species.ESPATHRA, + Species.VAROOM, + Species.REVAVROOM, + Species.CYCLIZAR, + Species.ORTHWORM, + Species.GREAVARD, + Species.HOUNDSTONE, + Species.CETODDLE, + Species.CETITAN, + Species.VELUZA, + Species.DONDOZO, + Species.ANNIHILAPE, + Species.CLODSIRE, + Species.FARIGIRAF, + Species.DUDUNSPARCE, + Species.GREAT_TUSK, + Species.SCREAM_TAIL, + Species.BRUTE_BONNET, + Species.SLITHER_WING, + Species.IRON_TREADS, + Species.IRON_HANDS, + Species.IRON_JUGULIS, + Species.IRON_THORNS, + Species.BAXCALIBUR, + Species.TING_LU, + Species.ROARING_MOON, + Species.KORAIDON, + Species.WALKING_WAKE, + Species.OKIDOGI, + Species.ARCHALUDON, + Species.HYDRAPPLE, + Species.GOUGING_FIRE, + Species.RAGING_BOLT, + Species.IRON_BOULDER, + Species.IRON_CROWN, + Species.TERAPAGOS, + Species.ALOLA_RATTATA, + Species.ALOLA_RATICATE, + Species.ALOLA_SANDSHREW, + Species.ALOLA_SANDSLASH, + Species.ALOLA_VULPIX, + Species.ALOLA_NINETALES, + Species.ALOLA_DUGTRIO, + Species.ALOLA_MEOWTH, + Species.ALOLA_PERSIAN, + Species.ALOLA_GEODUDE, + Species.ALOLA_GRAVELER, + Species.ALOLA_GOLEM, + Species.ALOLA_EXEGGUTOR, + Species.GALAR_MEOWTH, + Species.GALAR_SLOWBRO, + Species.GALAR_WEEZING, + Species.GALAR_ZAPDOS, + Species.HISUI_GROWLITHE, + Species.HISUI_ARCANINE, + Species.HISUI_VOLTORB, + Species.HISUI_ELECTRODE, + Species.HISUI_TYPHLOSION, + Species.HISUI_QWILFISH, + Species.HISUI_BRAVIARY, + Species.HISUI_AVALUGG, + Species.PALDEA_TAUROS, + Species.PALDEA_WOOPER, + ], [Moves.PIN_MISSILE]: [ Species.BEEDRILL, Species.SANDSLASH, @@ -3348,7 +3843,7 @@ export const tmSpecies: TmSpecies = { Species.HISUI_GOODRA, [ Species.PALDEA_TAUROS, - 'blaze-breed', + 'blaze', ], ], [Moves.HYDRO_PUMP]: [ @@ -3536,7 +4031,7 @@ export const tmSpecies: TmSpecies = { Species.HISUI_GOODRA, [ Species.PALDEA_TAUROS, - 'aqua-breed', + 'aqua', ], Species.PALDEA_WOOPER, ], @@ -3784,8 +4279,8 @@ export const tmSpecies: TmSpecies = { Species.HISUI_GOODRA, [ Species.PALDEA_TAUROS, - 'combat-breed', - 'aqua-breed', + 'combat', + 'aqua', ], Species.PALDEA_WOOPER, ], @@ -5740,7 +6235,7 @@ export const tmSpecies: TmSpecies = { Species.HISUI_TYPHLOSION, [ Species.PALDEA_TAUROS, - 'blaze-breed', + 'blaze', ], ], [Moves.THUNDERBOLT]: [ @@ -11381,7 +11876,7 @@ export const tmSpecies: TmSpecies = { Species.HISUI_GOODRA, [ Species.PALDEA_TAUROS, - 'blaze-breed', + 'blaze', ], ], [Moves.WATERFALL]: [ @@ -16640,6 +17135,449 @@ export const tmSpecies: TmSpecies = { Species.GALAR_YAMASK, Species.GALAR_STUNFISK, ], + [Moves.CURSE]: [ + Species.BULBASAUR, + Species.IVYSAUR, + Species.VENUSAUR, + Species.CHARMANDER, + Species.CHARMELEON, + Species.CHARIZARD, + Species.SQUIRTLE, + Species.WARTORTLE, + Species.BLASTOISE, + Species.BUTTERFREE, + Species.BEEDRILL, + Species.PIDGEY, + Species.PIDGEOTTO, + Species.PIDGEOT, + Species.RATTATA, + Species.RATICATE, + Species.SPEAROW, + Species.FEAROW, + Species.EKANS, + Species.ARBOK, + Species.PIKACHU, + Species.RAICHU, + Species.SANDSHREW, + Species.SANDSLASH, + Species.NIDORAN_F, + Species.NIDORINA, + Species.NIDOQUEEN, + Species.NIDORAN_M, + Species.NIDORINO, + Species.NIDOKING, + Species.CLEFAIRY, + Species.CLEFABLE, + Species.VULPIX, + Species.NINETALES, + Species.JIGGLYPUFF, + Species.WIGGLYTUFF, + Species.ZUBAT, + Species.GOLBAT, + Species.ODDISH, + Species.GLOOM, + Species.VILEPLUME, + Species.PARAS, + Species.PARASECT, + Species.VENONAT, + Species.VENOMOTH, + Species.DIGLETT, + Species.DUGTRIO, + Species.MEOWTH, + Species.PERSIAN, + Species.PSYDUCK, + Species.GOLDUCK, + Species.MANKEY, + Species.PRIMEAPE, + Species.GROWLITHE, + Species.ARCANINE, + Species.POLIWAG, + Species.POLIWHIRL, + Species.POLIWRATH, + Species.ABRA, + Species.KADABRA, + Species.ALAKAZAM, + Species.MACHOP, + Species.MACHOKE, + Species.MACHAMP, + Species.BELLSPROUT, + Species.WEEPINBELL, + Species.VICTREEBEL, + Species.TENTACOOL, + Species.TENTACRUEL, + Species.GEODUDE, + Species.GRAVELER, + Species.GOLEM, + Species.PONYTA, + Species.RAPIDASH, + Species.SLOWPOKE, + Species.SLOWBRO, + Species.MAGNEMITE, + Species.MAGNETON, + Species.FARFETCHD, + Species.DODUO, + Species.DODRIO, + Species.SEEL, + Species.DEWGONG, + Species.GRIMER, + Species.MUK, + Species.SHELLDER, + Species.CLOYSTER, + Species.GASTLY, + Species.HAUNTER, + Species.GENGAR, + Species.ONIX, + Species.DROWZEE, + Species.HYPNO, + Species.KRABBY, + Species.KINGLER, + Species.VOLTORB, + Species.ELECTRODE, + Species.EXEGGCUTE, + Species.EXEGGUTOR, + Species.CUBONE, + Species.MAROWAK, + Species.HITMONLEE, + Species.HITMONCHAN, + Species.LICKITUNG, + Species.KOFFING, + Species.WEEZING, + Species.RHYHORN, + Species.RHYDON, + Species.CHANSEY, + Species.TANGELA, + Species.KANGASKHAN, + Species.HORSEA, + Species.SEADRA, + Species.GOLDEEN, + Species.SEAKING, + Species.STARYU, + Species.STARMIE, + Species.MR_MIME, + Species.SCYTHER, + Species.JYNX, + Species.ELECTABUZZ, + Species.MAGMAR, + Species.PINSIR, + Species.TAUROS, + Species.GYARADOS, + Species.LAPRAS, + Species.EEVEE, + Species.VAPOREON, + Species.JOLTEON, + Species.FLAREON, + Species.PORYGON, + Species.OMANYTE, + Species.OMASTAR, + Species.KABUTO, + Species.KABUTOPS, + Species.AERODACTYL, + Species.SNORLAX, + Species.ARTICUNO, + Species.ZAPDOS, + Species.MOLTRES, + Species.DRATINI, + Species.DRAGONAIR, + Species.DRAGONITE, + Species.MEWTWO, + Species.MEW, + Species.CHIKORITA, + Species.BAYLEEF, + Species.MEGANIUM, + Species.CYNDAQUIL, + Species.QUILAVA, + Species.TYPHLOSION, + Species.TOTODILE, + Species.CROCONAW, + Species.FERALIGATR, + Species.SENTRET, + Species.FURRET, + Species.HOOTHOOT, + Species.NOCTOWL, + Species.LEDYBA, + Species.LEDIAN, + Species.SPINARAK, + Species.ARIADOS, + Species.CROBAT, + Species.CHINCHOU, + Species.LANTURN, + Species.PICHU, + Species.CLEFFA, + Species.IGGLYBUFF, + Species.TOGEPI, + Species.TOGETIC, + Species.NATU, + Species.XATU, + Species.MAREEP, + Species.FLAAFFY, + Species.AMPHAROS, + Species.BELLOSSOM, + Species.MARILL, + Species.AZUMARILL, + Species.SUDOWOODO, + Species.POLITOED, + Species.HOPPIP, + Species.SKIPLOOM, + Species.JUMPLUFF, + Species.AIPOM, + Species.SUNKERN, + Species.SUNFLORA, + Species.YANMA, + Species.WOOPER, + Species.QUAGSIRE, + Species.ESPEON, + Species.UMBREON, + Species.MURKROW, + Species.SLOWKING, + Species.MISDREAVUS, + Species.GIRAFARIG, + Species.PINECO, + Species.FORRETRESS, + Species.DUNSPARCE, + Species.GLIGAR, + Species.STEELIX, + Species.SNUBBULL, + Species.GRANBULL, + Species.QWILFISH, + Species.SCIZOR, + Species.SHUCKLE, + Species.HERACROSS, + Species.SNEASEL, + Species.TEDDIURSA, + Species.URSARING, + Species.SLUGMA, + Species.MAGCARGO, + Species.SWINUB, + Species.PILOSWINE, + Species.CORSOLA, + Species.REMORAID, + Species.OCTILLERY, + Species.DELIBIRD, + Species.MANTINE, + Species.SKARMORY, + Species.HOUNDOUR, + Species.HOUNDOOM, + Species.KINGDRA, + Species.PHANPY, + Species.DONPHAN, + Species.PORYGON2, + Species.STANTLER, + Species.TYROGUE, + Species.HITMONTOP, + Species.SMOOCHUM, + Species.ELEKID, + Species.MAGBY, + Species.MILTANK, + Species.BLISSEY, + Species.RAIKOU, + Species.ENTEI, + Species.SUICUNE, + Species.LARVITAR, + Species.PUPITAR, + Species.TYRANITAR, + Species.LUGIA, + Species.HO_OH, + Species.CELEBI, + Species.TORCHIC, + Species.COMBUSKEN, + Species.BLAZIKEN, + Species.MUDKIP, + Species.MARSHTOMP, + Species.SWAMPERT, + Species.SEEDOT, + Species.NUZLEAF, + Species.SHIFTRY, + Species.SLAKOTH, + Species.VIGOROTH, + Species.SLAKING, + Species.HARIYAMA, + Species.NOSEPASS, + Species.GULPIN, + Species.SWALOT, + Species.NUMEL, + Species.CAMERUPT, + Species.TORKOAL, + Species.CACNEA, + Species.CACTURNE, + Species.ZANGOOSE, + Species.SEVIPER, + Species.WHISCASH, + Species.SHUPPET, + Species.BANETTE, + Species.DUSKULL, + Species.DUSCLOPS, + Species.TROPIUS, + Species.CHIMECHO, + Species.REGIROCK, + Species.REGICE, + Species.REGISTEEL, + Species.TURTWIG, + Species.GROTLE, + Species.TORTERRA, + Species.CRANIDOS, + Species.RAMPARDOS, + Species.SHIELDON, + Species.BASTIODON, + Species.SHELLOS, + Species.GASTRODON, + Species.AMBIPOM, + Species.DRIFLOON, + Species.DRIFBLIM, + Species.MISMAGIUS, + Species.HONCHKROW, + Species.CHINGLING, + Species.BONSLY, + Species.SPIRITOMB, + Species.MUNCHLAX, + Species.HIPPOPOTAS, + Species.HIPPOWDON, + Species.SNOVER, + Species.ABOMASNOW, + Species.WEAVILE, + Species.MAGNEZONE, + Species.LICKILICKY, + Species.RHYPERIOR, + Species.TANGROWTH, + Species.ELECTIVIRE, + Species.MAGMORTAR, + Species.TOGEKISS, + Species.YANMEGA, + Species.LEAFEON, + Species.GLACEON, + Species.GLISCOR, + Species.MAMOSWINE, + Species.PORYGON_Z, + Species.PROBOPASS, + Species.DUSKNOIR, + Species.FROSLASS, + Species.GIRATINA, + Species.DARKRAI, + Species.TEPIG, + Species.PIGNITE, + Species.EMBOAR, + Species.DRILBUR, + Species.EXCADRILL, + Species.TIMBURR, + Species.GURDURR, + Species.CONKELDURR, + Species.SANDILE, + Species.KROKOROK, + Species.KROOKODILE, + Species.SCRAGGY, + Species.SCRAFTY, + Species.SAWSBUCK, + Species.LITWICK, + Species.LAMPENT, + Species.CHANDELURE, + Species.BEARTIC, + Species.GOLETT, + Species.GOLURK, + Species.CHESPIN, + Species.QUILLADIN, + Species.CHESNAUGHT, + Species.SYLVEON, + Species.GOOMY, + Species.SLIGGOO, + Species.GOODRA, + Species.PHANTUMP, + Species.TREVENANT, + Species.BERGMITE, + Species.AVALUGG, + Species.DECIDUEYE, + Species.GUMSHOOS, + Species.MUDBRAY, + Species.MUDSDALE, + Species.PASSIMIAN, + Species.SANDYGAST, + Species.PALOSSAND, + Species.KOMALA, + Species.MIMIKYU, + Species.SKWOVET, + Species.GREEDENT, + Species.CORVIKNIGHT, + Species.ROLYCOLY, + Species.CARKOL, + Species.COALOSSAL, + Species.APPLETUN, + Species.SINISTEA, + Species.POLTEAGEIST, + Species.PERRSERKER, + Species.PINCURCHIN, + Species.STONJOURNER, + Species.CUFANT, + Species.COPPERAJAH, + Species.DREEPY, + Species.DRAKLOAK, + Species.DRAGAPULT, + Species.GLASTRIER, + Species.SPECTRIER, + [ + Species.CALYREX, + 'ice', + 'shadow', + ], + Species.WYRDEER, + Species.KLEAVOR, + Species.URSALUNA, + Species.OVERQWIL, + Species.FUECOCO, + Species.CROCALOR, + Species.SKELEDIRGE, + Species.LECHONK, + Species.OINKOLOGNE, + Species.NACLI, + Species.NACLSTACK, + Species.GARGANACL, + Species.CERULEDGE, + Species.MABOSSTIFF, + Species.BRAMBLIN, + Species.BRAMBLEGHAST, + Species.BOMBIRDIER, + Species.VAROOM, + Species.REVAVROOM, + Species.ORTHWORM, + Species.CETODDLE, + Species.CETITAN, + Species.DONDOZO, + Species.ANNIHILAPE, + Species.CLODSIRE, + Species.FARIGIRAF, + Species.DUDUNSPARCE, + Species.SLITHER_WING, + Species.IRON_THORNS, + Species.POLTCHAGEIST, + Species.SINISTCHA, + Species.OKIDOGI, + Species.HYDRAPPLE, + Species.PECHARUNT, + Species.ALOLA_SANDSHREW, + Species.ALOLA_SANDSLASH, + Species.ALOLA_DUGTRIO, + Species.ALOLA_MEOWTH, + Species.ALOLA_PERSIAN, + Species.ALOLA_GEODUDE, + Species.ALOLA_GRAVELER, + Species.ALOLA_GOLEM, + Species.ALOLA_GRIMER, + Species.ALOLA_MUK, + Species.ALOLA_EXEGGUTOR, + Species.ALOLA_MAROWAK, + Species.GALAR_MEOWTH, + Species.GALAR_SLOWPOKE, + Species.GALAR_SLOWBRO, + Species.GALAR_WEEZING, + Species.GALAR_SLOWKING, + Species.HISUI_ELECTRODE, + Species.HISUI_TYPHLOSION, + Species.HISUI_QWILFISH, + Species.HISUI_ZORUA, + Species.HISUI_ZOROARK, + Species.HISUI_SLIGGOO, + Species.HISUI_GOODRA, + Species.HISUI_AVALUGG, + Species.PALDEA_TAUROS, + Species.PALDEA_WOOPER, + ], [Moves.REVERSAL]: [ Species.RATTATA, Species.PIKACHU, @@ -26293,6 +27231,158 @@ export const tmSpecies: TmSpecies = { 'female', ], ], + [Moves.PAIN_SPLIT]: [ + Species.ARBOK, + Species.VULPIX, + Species.NINETALES, + Species.JIGGLYPUFF, + Species.WIGGLYTUFF, + Species.MEOWTH, + Species.PERSIAN, + Species.GRIMER, + Species.MUK, + Species.GASTLY, + Species.HAUNTER, + Species.GENGAR, + Species.KOFFING, + Species.WEEZING, + Species.TANGELA, + Species.STARYU, + Species.STARMIE, + Species.PORYGON, + Species.MEW, + Species.IGGLYBUFF, + Species.NATU, + Species.XATU, + Species.MISDREAVUS, + Species.PINECO, + Species.FORRETRESS, + Species.DUNSPARCE, + Species.QWILFISH, + Species.SLUGMA, + Species.MAGCARGO, + Species.HOUNDOUR, + Species.HOUNDOOM, + Species.PORYGON2, + Species.RALTS, + Species.KIRLIA, + Species.GARDEVOIR, + Species.NOSEPASS, + Species.SABLEYE, + Species.MAWILE, + Species.MEDITITE, + Species.MEDICHAM, + Species.GULPIN, + Species.SWALOT, + Species.LUNATONE, + Species.SOLROCK, + Species.LILEEP, + Species.CRADILY, + Species.SHUPPET, + Species.BANETTE, + Species.DUSKULL, + Species.DUSCLOPS, + Species.DEOXYS, + Species.RAMPARDOS, + Species.SHELLOS, + Species.GASTRODON, + Species.DRIFLOON, + Species.DRIFBLIM, + Species.MISMAGIUS, + Species.SPIRITOMB, + Species.TANGROWTH, + Species.PORYGON_Z, + Species.GALLADE, + Species.PROBOPASS, + Species.DUSKNOIR, + Species.FROSLASS, + Species.ROTOM, + Species.UXIE, + Species.MESPRIT, + Species.GIRATINA, + Species.MUNNA, + Species.MUSHARNA, + Species.AUDINO, + Species.THROH, + Species.SAWK, + Species.YAMASK, + Species.COFAGRIGUS, + Species.TRUBBISH, + Species.GARBODOR, + Species.ZORUA, + Species.ZOROARK, + Species.SOLOSIS, + Species.DUOSION, + Species.REUNICLUS, + Species.FRILLISH, + Species.JELLICENT, + Species.ALOMOMOLA, + Species.ELGYEM, + Species.BEHEEYEM, + Species.LITWICK, + Species.LAMPENT, + Species.CHANDELURE, + Species.STUNFISK, + Species.KELDEO, + Species.CHESPIN, + Species.QUILLADIN, + Species.CHESNAUGHT, + Species.PHANTUMP, + Species.TREVENANT, + Species.PUMPKABOO, + Species.GOURGEIST, + Species.ZYGARDE, + Species.MAREANIE, + Species.TOXAPEX, + Species.STUFFUL, + Species.BEWEAR, + Species.COMFEY, + Species.ORANGURU, + Species.PASSIMIAN, + Species.SANDYGAST, + Species.PALOSSAND, + Species.PYUKUMUKU, + Species.MIMIKYU, + Species.BRUXISH, + Species.DHELMISE, + Species.NIHILEGO, + Species.MAGEARNA, + Species.BLACEPHALON, + Species.CLOBBOPUS, + Species.GRAPPLOCT, + Species.POLTEAGEIST, + Species.HATTERENE, + Species.ALCREMIE, + Species.PINCURCHIN, + Species.SPECTRIER, + Species.BASCULEGION, + Species.OVERQWIL, + Species.SPIDOPS, + Species.MABOSSTIFF, + Species.BRAMBLIN, + Species.BRAMBLEGHAST, + Species.TOEDSCOOL, + Species.TOEDSCRUEL, + Species.WUGTRIO, + Species.GREAVARD, + Species.HOUNDSTONE, + Species.VELUZA, + Species.DUDUNSPARCE, + Species.FLUTTER_MANE, + Species.POLTCHAGEIST, + Species.SINISTCHA, + Species.ALOLA_VULPIX, + Species.ALOLA_NINETALES, + Species.ALOLA_GRIMER, + Species.ALOLA_MUK, + Species.ALOLA_MAROWAK, + Species.GALAR_WEEZING, + Species.GALAR_MOLTRES, + Species.GALAR_STUNFISK, + Species.HISUI_QWILFISH, + Species.HISUI_ZORUA, + Species.HISUI_ZOROARK, + ], [Moves.MEGAHORN]: [ Species.NIDOKING, Species.RAPIDASH, @@ -29413,8 +30503,8 @@ export const tmSpecies: TmSpecies = { Species.HISUI_DECIDUEYE, [ Species.PALDEA_TAUROS, - 'combat-breed', - 'blaze-breed', + 'combat', + 'blaze', ], ], [Moves.CRUNCH]: [ @@ -31612,7 +32702,7 @@ export const tmSpecies: TmSpecies = { Species.HISUI_ZOROARK, [ Species.PALDEA_TAUROS, - 'blaze-breed', + 'blaze', ], ], [Moves.FACADE]: [ @@ -35232,6 +36322,328 @@ export const tmSpecies: TmSpecies = { Species.HISUI_GOODRA, Species.HISUI_DECIDUEYE, ], + [Moves.ENDEAVOR]: [ + Species.BEEDRILL, + Species.RATTATA, + Species.RATICATE, + Species.PIKACHU, + Species.RAICHU, + Species.SANDSHREW, + Species.SANDSLASH, + Species.CLEFAIRY, + Species.CLEFABLE, + Species.JIGGLYPUFF, + Species.WIGGLYTUFF, + Species.VENONAT, + Species.VENOMOTH, + Species.DIGLETT, + Species.DUGTRIO, + Species.MEOWTH, + Species.PERSIAN, + Species.PSYDUCK, + Species.GOLDUCK, + Species.MANKEY, + Species.PRIMEAPE, + Species.POLIWAG, + Species.POLIWHIRL, + Species.POLIWRATH, + Species.DODUO, + Species.DODRIO, + Species.DEWGONG, + Species.DROWZEE, + Species.HYPNO, + Species.CUBONE, + Species.MAROWAK, + Species.HITMONLEE, + Species.HITMONCHAN, + Species.RHYHORN, + Species.RHYDON, + Species.CHANSEY, + Species.TANGELA, + Species.KANGASKHAN, + Species.TAUROS, + Species.GYARADOS, + Species.FLAREON, + Species.MEW, + Species.MEGANIUM, + Species.QUILAVA, + Species.TYPHLOSION, + Species.TOTODILE, + Species.CROCONAW, + Species.FERALIGATR, + Species.SENTRET, + Species.FURRET, + Species.CLEFFA, + Species.IGGLYBUFF, + Species.TOGEPI, + Species.TOGETIC, + Species.MAREEP, + Species.FLAAFFY, + Species.AMPHAROS, + Species.BELLOSSOM, + Species.SUDOWOODO, + Species.POLITOED, + Species.SKIPLOOM, + Species.JUMPLUFF, + Species.AIPOM, + Species.SUNKERN, + Species.SUNFLORA, + Species.GIRAFARIG, + Species.DUNSPARCE, + Species.SNUBBULL, + Species.GRANBULL, + Species.HERACROSS, + Species.SWINUB, + Species.PILOSWINE, + Species.CORSOLA, + Species.DELIBIRD, + Species.HOUNDOOM, + Species.PHANPY, + Species.DONPHAN, + Species.HITMONTOP, + Species.BLISSEY, + Species.TREECKO, + Species.GROVYLE, + Species.SCEPTILE, + Species.MUDKIP, + Species.MARSHTOMP, + Species.SWAMPERT, + Species.POOCHYENA, + Species.MIGHTYENA, + Species.SEEDOT, + Species.NUZLEAF, + Species.SHIFTRY, + Species.TAILLOW, + Species.SWELLOW, + Species.VIGOROTH, + Species.SLAKING, + Species.WHISMUR, + Species.LOUDRED, + Species.EXPLOUD, + Species.ARON, + Species.LAIRON, + Species.AGGRON, + Species.PLUSLE, + Species.MINUN, + Species.VOLBEAT, + Species.ILLUMISE, + Species.NUMEL, + Species.CAMERUPT, + Species.SPOINK, + Species.GRUMPIG, + Species.CACNEA, + Species.CACTURNE, + Species.SWABLU, + Species.ALTARIA, + Species.ZANGOOSE, + Species.SEVIPER, + Species.CORPHISH, + Species.CRAWDAUNT, + Species.LUVDISC, + Species.CHIMCHAR, + Species.MONFERNO, + Species.INFERNAPE, + Species.STARLY, + Species.STARAVIA, + Species.STARAPTOR, + Species.KRICKETOT, + Species.KRICKETUNE, + Species.CRANIDOS, + Species.RAMPARDOS, + Species.WORMADAM, + Species.COMBEE, + Species.VESPIQUEN, + Species.PACHIRISU, + Species.AMBIPOM, + Species.BUNEARY, + Species.LOPUNNY, + Species.HONCHKROW, + Species.SKUNTANK, + Species.HAPPINY, + Species.RHYPERIOR, + Species.TANGROWTH, + Species.TOGEKISS, + Species.MAMOSWINE, + Species.AZELF, + Species.SHAYMIN, + Species.TEPIG, + Species.PIGNITE, + Species.EMBOAR, + Species.PATRAT, + Species.WATCHOG, + Species.PANSAGE, + Species.SIMISAGE, + Species.PANSEAR, + Species.SIMISEAR, + Species.PANPOUR, + Species.SIMIPOUR, + Species.BLITZLE, + Species.ZEBSTRIKA, + Species.WOOBAT, + Species.SWOOBAT, + Species.TYMPOLE, + Species.PALPITOAD, + Species.SEISMITOAD, + Species.VENIPEDE, + Species.WHIRLIPEDE, + Species.SCOLIPEDE, + Species.COTTONEE, + Species.WHIMSICOTT, + Species.BASCULIN, + Species.KROKOROK, + Species.KROOKODILE, + Species.DARUMAKA, + Species.DARMANITAN, + Species.MARACTUS, + Species.SCRAGGY, + Species.SCRAFTY, + Species.ARCHEN, + Species.ARCHEOPS, + Species.MINCCINO, + Species.CINCCINO, + Species.SOLOSIS, + Species.DUOSION, + Species.REUNICLUS, + Species.DUCKLETT, + Species.SWANNA, + Species.DEERLING, + Species.SAWSBUCK, + Species.FERROSEED, + Species.FERROTHORN, + Species.AXEW, + Species.FRAXURE, + Species.HAXORUS, + Species.CUBCHOO, + Species.BEARTIC, + Species.STUNFISK, + Species.BOUFFALANT, + Species.DURANT, + Species.KYUREM, + Species.KELDEO, + Species.CHESPIN, + Species.QUILLADIN, + Species.CHESNAUGHT, + Species.BUNNELBY, + Species.DIGGERSBY, + Species.VIVILLON, + Species.LITLEO, + Species.PYROAR, + Species.FLABEBE, + Species.FLOETTE, + Species.FLORGES, + Species.SKIDDO, + Species.GOGOAT, + Species.PANCHAM, + Species.PANGORO, + Species.FURFROU, + Species.SPRITZEE, + Species.AROMATISSE, + Species.SWIRLIX, + Species.SLURPUFF, + Species.BINACLE, + Species.BARBARACLE, + Species.HAWLUCHA, + Species.DEDENNE, + Species.CARBINK, + Species.XERNEAS, + Species.DIANCIE, + Species.LITTEN, + Species.TORRACAT, + Species.INCINEROAR, + Species.PIKIPEK, + Species.TRUMBEAK, + Species.TOUCANNON, + Species.YUNGOOS, + Species.GUMSHOOS, + Species.CRABRAWLER, + Species.CRABOMINABLE, + Species.ROCKRUFF, + Species.LYCANROC, + Species.WISHIWASHI, + Species.MUDBRAY, + Species.MUDSDALE, + Species.DEWPIDER, + Species.ARAQUANID, + Species.SALANDIT, + Species.SALAZZLE, + Species.BOUNSWEET, + Species.STEENEE, + Species.TSAREENA, + Species.PASSIMIAN, + Species.ORANGURU, + Species.MINIOR, + Species.KOMALA, + Species.TURTONATOR, + Species.TOGEDEMARU, + Species.DRAMPA, + Species.KOMMO_O, + Species.SOLGALEO, + Species.BUZZWOLE, + Species.MARSHADOW, + Species.ZERAORA, + Species.GROOKEY, + Species.THWACKEY, + Species.RILLABOOM, + Species.SKWOVET, + Species.GREEDENT, + Species.FLAPPLE, + Species.SANDACONDA, + Species.CRAMORANT, + Species.TOXEL, + Species.TOXTRICITY, + Species.PERRSERKER, + Species.ALCREMIE, + Species.FALINKS, + Species.STONJOURNER, + Species.MORPEKO, + Species.CUFANT, + Species.COPPERAJAH, + Species.BASCULEGION, + Species.QUAQUAVAL, + Species.LECHONK, + Species.OINKOLOGNE, + Species.FIDOUGH, + Species.DACHSBUN, + Species.SQUAWKABILLY, + Species.WATTREL, + Species.KILOWATTREL, + Species.MASCHIFF, + Species.MABOSSTIFF, + Species.SHROODLE, + Species.GRAFAIAI, + Species.KLAWF, + Species.CAPSAKID, + Species.SCOVILLAIN, + Species.TINKATINK, + Species.TINKATUFF, + Species.TINKATON, + Species.BOMBIRDIER, + Species.PALAFIN, + Species.REVAVROOM, + Species.CYCLIZAR, + Species.GREAVARD, + Species.HOUNDSTONE, + Species.FLAMIGO, + Species.VELUZA, + Species.ANNIHILAPE, + Species.FARIGIRAF, + Species.DUDUNSPARCE, + Species.GREAT_TUSK, + Species.IRON_TREADS, + Species.ALOLA_RATTATA, + Species.ALOLA_RATICATE, + Species.ALOLA_RAICHU, + Species.ALOLA_SANDSHREW, + Species.ALOLA_SANDSLASH, + Species.ALOLA_DUGTRIO, + Species.ALOLA_MEOWTH, + Species.ALOLA_PERSIAN, + Species.ALOLA_MAROWAK, + Species.GALAR_MEOWTH, + Species.GALAR_ZAPDOS, + Species.HISUI_TYPHLOSION, + Species.PALDEA_TAUROS, + ], [Moves.SKILL_SWAP]: [ Species.BUTTERFREE, Species.CLEFAIRY, @@ -35693,6 +37105,72 @@ export const tmSpecies: TmSpecies = { 'rapid-strike', ], ], + [Moves.FEATHER_DANCE]: [ + Species.PIDGEY, + Species.PIDGEOTTO, + Species.PIDGEOT, + Species.SPEAROW, + Species.FEAROW, + Species.FARFETCHD, + Species.DODUO, + Species.DODRIO, + Species.ARTICUNO, + Species.MEW, + Species.HOOTHOOT, + Species.NOCTOWL, + Species.NATU, + Species.XATU, + Species.MURKROW, + Species.DELIBIRD, + Species.TORCHIC, + Species.COMBUSKEN, + Species.BLAZIKEN, + Species.WINGULL, + Species.PELIPPER, + Species.SWABLU, + Species.ALTARIA, + Species.PIPLUP, + Species.PRINPLUP, + Species.EMPOLEON, + Species.STARLY, + Species.STARAVIA, + Species.STARAPTOR, + Species.HONCHKROW, + Species.CHATOT, + Species.PIDOVE, + Species.TRANQUILL, + Species.UNFEZANT, + Species.DUCKLETT, + Species.SWANNA, + Species.RUFFLET, + Species.BRAVIARY, + Species.VULLABY, + Species.MANDIBUZZ, + Species.FLETCHLING, + Species.FLETCHINDER, + Species.TALONFLAME, + Species.HAWLUCHA, + Species.ROWLET, + Species.DARTRIX, + Species.DECIDUEYE, + Species.PIKIPEK, + Species.TRUMBEAK, + Species.TOUCANNON, + Species.ORICORIO, + Species.CRAMORANT, + Species.FROSMOTH, + Species.EISCUE, + Species.QUAXWELL, + Species.QUAQUAVAL, + Species.SQUAWKABILLY, + Species.WATTREL, + Species.KILOWATTREL, + Species.ESPATHRA, + Species.BOMBIRDIER, + Species.FLAMIGO, + Species.HISUI_BRAVIARY, + Species.HISUI_DECIDUEYE, + ], [Moves.BLAZE_KICK]: [ Species.CHARIZARD, Species.HITMONLEE, @@ -36451,7 +37929,7 @@ export const tmSpecies: TmSpecies = { Species.HISUI_TYPHLOSION, [ Species.PALDEA_TAUROS, - 'blaze-breed', + 'blaze', ], ], [Moves.ROCK_TOMB]: [ @@ -36859,6 +38337,87 @@ export const tmSpecies: TmSpecies = { Species.PALDEA_TAUROS, Species.PALDEA_WOOPER, ], + [Moves.METAL_SOUND]: [ + Species.MAGNEMITE, + Species.MAGNETON, + Species.VOLTORB, + Species.ELECTRODE, + Species.ELECTABUZZ, + Species.JOLTEON, + Species.KABUTO, + Species.KABUTOPS, + Species.ZAPDOS, + Species.MEW, + Species.FORRETRESS, + Species.SKARMORY, + Species.ELEKID, + Species.ARON, + Species.LAIRON, + Species.AGGRON, + Species.REGISTEEL, + Species.JIRACHI, + Species.EMPOLEON, + Species.SHIELDON, + Species.BASTIODON, + [ + Species.WORMADAM, + 'trash', + ], + Species.BRONZOR, + Species.BRONZONG, + Species.LUCARIO, + Species.MAGNEZONE, + Species.ELECTIVIRE, + Species.PROBOPASS, + Species.DIALGA, + Species.HEATRAN, + Species.DRILBUR, + Species.EXCADRILL, + Species.KLINK, + Species.KLANG, + Species.KLINKLANG, + Species.PAWNIARD, + Species.BISHARP, + Species.DURANT, + Species.COBALION, + Species.GENESECT, + Species.HONEDGE, + Species.DOUBLADE, + Species.AEGISLASH, + Species.KLEFKI, + Species.TYPE_NULL, + Species.SILVALLY, + Species.DHELMISE, + Species.KOMMO_O, + Species.SOLGALEO, + Species.CELESTEELA, + Species.MAGEARNA, + Species.CORVIKNIGHT, + Species.TOXEL, + Species.TOXTRICITY, + Species.PERRSERKER, + Species.DURALUDON, + Species.TINKATINK, + Species.TINKATUFF, + Species.TINKATON, + Species.VAROOM, + Species.REVAVROOM, + Species.ORTHWORM, + Species.KINGAMBIT, + Species.SANDY_SHOCKS, + Species.IRON_TREADS, + Species.IRON_JUGULIS, + Species.IRON_MOTH, + Species.GHOLDENGO, + Species.MIRAIDON, + Species.IRON_LEAVES, + Species.ARCHALUDON, + Species.IRON_CROWN, + Species.ALOLA_DIGLETT, + Species.ALOLA_DUGTRIO, + Species.GALAR_MEOWTH, + Species.GALAR_STUNFISK, + ], [Moves.COSMIC_POWER]: [ Species.CLEFAIRY, Species.CLEFABLE, @@ -39451,7 +41010,7 @@ export const tmSpecies: TmSpecies = { Species.HISUI_GOODRA, [ Species.PALDEA_TAUROS, - 'aqua-breed', + 'aqua', ], Species.PALDEA_WOOPER, ], @@ -40968,7 +42527,7 @@ export const tmSpecies: TmSpecies = { ], [ Species.PALDEA_TAUROS, - 'combat-breed', + 'combat', ], ], [Moves.EMBARGO]: [ @@ -41803,7 +43362,7 @@ export const tmSpecies: TmSpecies = { Species.HISUI_TYPHLOSION, [ Species.PALDEA_TAUROS, - 'blaze-breed', + 'blaze', ], ], [Moves.AURA_SPHERE]: [ @@ -49073,7 +50632,7 @@ export const tmSpecies: TmSpecies = { Species.HISUI_TYPHLOSION, [ Species.PALDEA_TAUROS, - 'blaze-breed', + 'blaze', ], ], [Moves.LOW_SWEEP]: [ @@ -53475,6 +55034,42 @@ export const tmSpecies: TmSpecies = { Species.HISUI_ZORUA, Species.HISUI_ZOROARK, ], + [Moves.PETAL_BLIZZARD]: [ + Species.VENUSAUR, + Species.GLOOM, + Species.VILEPLUME, + Species.MEW, + Species.MEGANIUM, + Species.BELLOSSOM, + Species.SUNFLORA, + Species.SHIFTRY, + Species.ROSELIA, + Species.TROPIUS, + Species.ROSERADE, + Species.CHERUBI, + Species.CHERRIM, + Species.SHAYMIN, + Species.SNIVY, + Species.SERVINE, + Species.SERPERIOR, + Species.LILLIGANT, + Species.MARACTUS, + Species.SAWSBUCK, + Species.FLABEBE, + Species.FLOETTE, + Species.FLORGES, + Species.FOMANTIS, + Species.LURANTIS, + Species.STEENEE, + Species.TSAREENA, + Species.COMFEY, + Species.ZARUDE, + Species.SPRIGATITO, + Species.FLORAGATO, + Species.MEOWSCARADA, + Species.ARBOLIVA, + Species.HISUI_LILLIGANT, + ], [Moves.DISARMING_VOICE]: [ Species.PIKACHU, Species.RAICHU, @@ -56601,7 +58196,7 @@ export const tmSpecies: TmSpecies = { Species.HISUI_SAMUROTT, [ Species.PALDEA_TAUROS, - 'aqua-breed', + 'aqua', ], Species.PALDEA_WOOPER, ], @@ -59359,10 +60954,58 @@ export const tmSpecies: TmSpecies = { Species.HISUI_AVALUGG, [ Species.PALDEA_TAUROS, - 'aqua-breed', + 'aqua', ], Species.PALDEA_WOOPER, ], + [Moves.HARD_PRESS]: [ + Species.GRAVELER, + Species.GOLEM, + Species.SNORLAX, + Species.MEW, + Species.FORRETRESS, + Species.SCIZOR, + Species.TYRANITAR, + Species.SWAMPERT, + Species.SLAKING, + Species.CRAWDAUNT, + Species.METANG, + Species.METAGROSS, + Species.REGIROCK, + Species.REGISTEEL, + Species.TORTERRA, + Species.SHIELDON, + Species.BASTIODON, + Species.BRONZONG, + Species.HIPPOWDON, + Species.ABOMASNOW, + Species.MAGNEZONE, + Species.MAMOSWINE, + Species.PROBOPASS, + Species.DUSKNOIR, + Species.HEATRAN, + Species.REGIGIGAS, + Species.EMBOAR, + Species.CONKELDURR, + Species.BEARTIC, + Species.GOLURK, + Species.CRABOMINABLE, + Species.STONJOURNER, + Species.COPPERAJAH, + Species.URSALUNA, + Species.GARGANACL, + Species.TINKATON, + Species.PALAFIN, + Species.REVAVROOM, + Species.CETITAN, + Species.IRON_TREADS, + Species.IRON_HANDS, + Species.OKIDOGI, + Species.ARCHALUDON, + Species.ALOLA_GRAVELER, + Species.ALOLA_GOLEM, + Species.HISUI_AVALUGG, + ], [Moves.DRAGON_CHEER]: [ Species.CHARIZARD, Species.GYARADOS, @@ -59423,6 +61066,333 @@ export const tmSpecies: TmSpecies = { Species.ALOLA_EXEGGUTOR, Species.HISUI_GOODRA, ], + [Moves.ALLURING_VOICE]: [ + Species.PIKACHU, + Species.RAICHU, + Species.CLEFAIRY, + Species.CLEFABLE, + Species.JIGGLYPUFF, + Species.WIGGLYTUFF, + Species.DEWGONG, + Species.LAPRAS, + Species.EEVEE, + Species.VAPOREON, + Species.JOLTEON, + Species.FLAREON, + Species.MEW, + Species.CLEFFA, + Species.IGGLYBUFF, + Species.MARILL, + Species.AZUMARILL, + Species.ESPEON, + Species.UMBREON, + Species.BLISSEY, + Species.RALTS, + Species.KIRLIA, + Species.GARDEVOIR, + Species.AZURILL, + Species.PLUSLE, + Species.MINUN, + Species.FLYGON, + Species.ALTARIA, + Species.MILOTIC, + Species.LATIAS, + Species.PACHIRISU, + Species.FINNEON, + Species.LUMINEON, + Species.LEAFEON, + Species.GLACEON, + Species.GALLADE, + Species.PHIONE, + Species.MANAPHY, + Species.LILLIGANT, + Species.MINCCINO, + Species.CINCCINO, + Species.SWANNA, + Species.ALOMOMOLA, + Species.MELOETTA, + Species.FLABEBE, + Species.FLOETTE, + Species.FLORGES, + Species.MEOWSTIC, + Species.SYLVEON, + Species.PRIMARINA, + Species.ORICORIO, + Species.RIBOMBEE, + Species.COMFEY, + Species.ALCREMIE, + Species.ENAMORUS, + Species.SKELEDIRGE, + Species.FIDOUGH, + Species.DACHSBUN, + Species.ARBOLIVA, + Species.FEZANDIPITI, + Species.ALOLA_RAICHU, + ], + [Moves.TEMPER_FLARE]: [ + Species.CHARMANDER, + Species.CHARMELEON, + Species.CHARIZARD, + Species.GROWLITHE, + Species.ARCANINE, + Species.MAGMAR, + Species.GYARADOS, + Species.FLAREON, + Species.MOLTRES, + Species.MEW, + Species.CYNDAQUIL, + Species.QUILAVA, + Species.TYPHLOSION, + Species.SNUBBULL, + Species.GRANBULL, + Species.SLUGMA, + Species.MAGCARGO, + Species.HOUNDOUR, + Species.HOUNDOOM, + Species.MAGBY, + Species.TORCHIC, + Species.COMBUSKEN, + Species.BLAZIKEN, + Species.NUMEL, + Species.CAMERUPT, + Species.TORKOAL, + Species.SHELGON, + Species.SALAMENCE, + Species.CHIMCHAR, + Species.MONFERNO, + Species.INFERNAPE, + Species.DRIFLOON, + Species.DRIFBLIM, + Species.STUNKY, + Species.SKUNTANK, + Species.RHYPERIOR, + Species.MAGMORTAR, + Species.TEPIG, + Species.PIGNITE, + Species.EMBOAR, + Species.LITWICK, + Species.LAMPENT, + Species.CHANDELURE, + Species.FLETCHINDER, + Species.TALONFLAME, + Species.PYROAR, + Species.LITTEN, + Species.TORRACAT, + Species.INCINEROAR, + Species.TOUCANNON, + Species.SALANDIT, + Species.SALAZZLE, + Species.SCORBUNNY, + Species.RABOOT, + Species.CINDERACE, + Species.ROLYCOLY, + Species.CARKOL, + Species.COALOSSAL, + Species.FUECOCO, + Species.CROCALOR, + Species.SKELEDIRGE, + Species.KLAWF, + Species.SCOVILLAIN, + Species.REVAVROOM, + Species.CYCLIZAR, + Species.GREAT_TUSK, + Species.SLITHER_WING, + Species.CHI_YU, + Species.KORAIDON, + Species.GOUGING_FIRE, + Species.HISUI_GROWLITHE, + Species.HISUI_ARCANINE, + Species.HISUI_TYPHLOSION, + [ + Species.PALDEA_TAUROS, + 'blaze', + ], + ], + [Moves.SUPERCELL_SLAM]:[ + Species.ELECTRODE, + Species.RHYHORN, + Species.RHYDON, + Species.ELECTABUZZ, + Species.SNORLAX, + Species.ZAPDOS, + Species.MEW, + Species.AMPHAROS, + Species.ELEKID, + Species.RAIKOU, + Species.MANECTRIC, + Species.LUXRAY, + Species.RAMPARDOS, + Species.MAGNEZONE, + Species.RHYPERIOR, + Species.ELECTIVIRE, + Species.PROBOPASS, + Species.ARCEUS, + Species.BLITZLE, + Species.ZEBSTRIKA, + Species.EELEKTROSS, + Species.THUNDURUS, + Species.ZEKROM, + Species.VIKAVOLT, + Species.PINCURCHIN, + Species.COPPERAJAH, + Species.REGIELEKI, + Species.URSALUNA, + Species.PAWMOT, + Species.BELLIBOLT, + Species.KILOWATTREL, + Species.CYCLIZAR, + Species.GREAT_TUSK, + Species.SANDY_SHOCKS, + Species.IRON_TREADS, + Species.IRON_HANDS, + Species.IRON_THORNS, + Species.MIRAIDON, + Species.RAGING_BOLT, + Species.IRON_CROWN, + Species.TERAPAGOS, + Species.ALOLA_GEODUDE, + Species.ALOLA_GRAVELER, + Species.ALOLA_GOLEM, + Species.HISUI_ELECTRODE, + ], + [Moves.PSYCHIC_NOISE]: [ + Species.JIGGLYPUFF, + Species.WIGGLYTUFF, + Species.VENONAT, + Species.VENOMOTH, + Species.PSYDUCK, + Species.GOLDUCK, + Species.SLOWBRO, + Species.GENGAR, + Species.DROWZEE, + Species.HYPNO, + Species.EXEGGCUTE, + Species.EXEGGUTOR, + Species.LAPRAS, + Species.MEWTWO, + Species.MEW, + Species.NOCTOWL, + Species.YANMA, + Species.ESPEON, + Species.MURKROW, + Species.SLOWKING, + Species.MISDREAVUS, + Species.GIRAFARIG, + Species.LUGIA, + Species.GARDEVOIR, + Species.GRUMPIG, + Species.FLYGON, + Species.CHIMECHO, + Species.METANG, + Species.METAGROSS, + Species.LATIOS, + Species.JIRACHI, + Species.DEOXYS, + Species.VESPIQUEN, + Species.MISMAGIUS, + Species.HONCHKROW, + Species.CHINGLING, + Species.BRONZOR, + Species.BRONZONG, + Species.YANMEGA, + Species.UXIE, + Species.MESPRIT, + Species.GOTHITA, + Species.GOTHORITA, + Species.GOTHITELLE, + Species.REUNICLUS, + Species.DELPHOX, + Species.FLORGES, + Species.ESPURR, + Species.MEOWSTIC, + Species.MALAMAR, + Species.TREVENANT, + Species.NOIVERN, + Species.HOOPA, + Species.PRIMARINA, + Species.RIBOMBEE, + Species.ORANGURU, + Species.BRUXISH, + Species.TOXTRICITY, + Species.HATTERENE, + Species.INDEEDEE, + Species.WYRDEER, + Species.RABSCA, + Species.FARIGIRAF, + Species.SCREAM_TAIL, + Species.MUNKIDORI, + Species.IRON_CROWN, + Species.ALOLA_RAICHU, + Species.ALOLA_EXEGGUTOR, + Species.GALAR_ARTICUNO, + Species.GALAR_SLOWKING, + Species.HISUI_BRAVIARY, + ], + [Moves.UPPER_HAND]: [ + Species.PIKACHU, + Species.RAICHU, + Species.POLIWRATH, + Species.HITMONLEE, + Species.HITMONCHAN, + Species.MEW, + Species.AIPOM, + Species.HERACROSS, + Species.SNEASEL, + Species.TYROGUE, + Species.HITMONTOP, + Species.TREECKO, + Species.GROVYLE, + Species.SCEPTILE, + Species.BLAZIKEN, + Species.SHIFTRY, + Species.HARIYAMA, + Species.MEDITITE, + Species.MEDICHAM, + Species.ZANGOOSE, + Species.MONFERNO, + Species.INFERNAPE, + Species.AMBIPOM, + Species.RIOLU, + Species.LUCARIO, + Species.CROAGUNK, + Species.TOXICROAK, + Species.WEAVILE, + Species.GALLADE, + Species.SAMUROTT, + Species.CONKELDURR, + Species.SCRAGGY, + Species.SCRAFTY, + Species.MIENFOO, + Species.MIENSHAO, + Species.COBALION, + Species.TERRAKION, + Species.VIRIZION, + Species.KELDEO, + Species.GRENINJA, + Species.TALONFLAME, + Species.HAWLUCHA, + Species.CRABRAWLER, + Species.CRABOMINABLE, + [ + Species.LYCANROC, + 'midnight', + ], + Species.PASSIMIAN, + Species.HAKAMO_O, + Species.KOMMO_O, + Species.FALINKS, + Species.SNEASLER, + Species.QUAQUAVAL, + Species.SPIDOPS, + Species.PAWMO, + Species.PAWMOT, + Species.FLAMIGO, + Species.OKIDOGI, + Species.ALOLA_RAICHU, + Species.HISUI_SAMUROTT, + Species.HISUI_LILLIGANT, + Species.HISUI_DECIDUEYE, + ], }; interface TmPoolTiers { @@ -59440,6 +61410,7 @@ export const tmPoolTiers: TmPoolTiers = { [Moves.MEGA_KICK]: ModifierTier.GREAT, [Moves.BODY_SLAM]: ModifierTier.GREAT, [Moves.TAKE_DOWN]: ModifierTier.GREAT, + [Moves.DOUBLE_EDGE]: ModifierTier.ULTRA, [Moves.PIN_MISSILE]: ModifierTier.COMMON, [Moves.ROAR]: ModifierTier.COMMON, [Moves.FLAMETHROWER]: ModifierTier.ULTRA, @@ -59484,6 +61455,7 @@ export const tmPoolTiers: TmPoolTiers = { [Moves.SUBSTITUTE]: ModifierTier.COMMON, [Moves.THIEF]: ModifierTier.GREAT, [Moves.SNORE]: ModifierTier.COMMON, + [Moves.CURSE]: ModifierTier.COMMON, [Moves.REVERSAL]: ModifierTier.COMMON, [Moves.SPITE]: ModifierTier.COMMON, [Moves.PROTECT]: ModifierTier.COMMON, @@ -59505,6 +61477,7 @@ export const tmPoolTiers: TmPoolTiers = { [Moves.RETURN]: ModifierTier.ULTRA, [Moves.FRUSTRATION]: ModifierTier.COMMON, [Moves.SAFEGUARD]: ModifierTier.COMMON, + [Moves.PAIN_SPLIT]: ModifierTier.COMMON, [Moves.MEGAHORN]: ModifierTier.ULTRA, [Moves.BATON_PASS]: ModifierTier.COMMON, [Moves.ENCORE]: ModifierTier.COMMON, @@ -59535,9 +61508,11 @@ export const tmPoolTiers: TmPoolTiers = { [Moves.REVENGE]: ModifierTier.GREAT, [Moves.BRICK_BREAK]: ModifierTier.GREAT, [Moves.KNOCK_OFF]: ModifierTier.GREAT, + [Moves.ENDEAVOR]: ModifierTier.COMMON, [Moves.SKILL_SWAP]: ModifierTier.COMMON, [Moves.IMPRISON]: ModifierTier.COMMON, [Moves.DIVE]: ModifierTier.GREAT, + [Moves.FEATHER_DANCE]: ModifierTier.COMMON, [Moves.BLAZE_KICK]: ModifierTier.GREAT, [Moves.HYPER_VOICE]: ModifierTier.ULTRA, [Moves.BLAST_BURN]: ModifierTier.ULTRA, @@ -59547,6 +61522,7 @@ export const tmPoolTiers: TmPoolTiers = { [Moves.AIR_CUTTER]: ModifierTier.GREAT, [Moves.OVERHEAT]: ModifierTier.ULTRA, [Moves.ROCK_TOMB]: ModifierTier.GREAT, + [Moves.METAL_SOUND]: ModifierTier.COMMON, [Moves.COSMIC_POWER]: ModifierTier.COMMON, [Moves.SAND_TOMB]: ModifierTier.COMMON, [Moves.MUDDY_WATER]: ModifierTier.GREAT, @@ -59660,6 +61636,7 @@ export const tmPoolTiers: TmPoolTiers = { [Moves.HURRICANE]: ModifierTier.ULTRA, [Moves.SNARL]: ModifierTier.COMMON, [Moves.PHANTOM_FORCE]: ModifierTier.ULTRA, + [Moves.PETAL_BLIZZARD]: ModifierTier.GREAT, [Moves.DISARMING_VOICE]: ModifierTier.GREAT, [Moves.DRAINING_KISS]: ModifierTier.GREAT, [Moves.GRASSY_TERRAIN]: ModifierTier.COMMON, @@ -59713,18 +61690,11 @@ export const tmPoolTiers: TmPoolTiers = { [Moves.POUNCE]: ModifierTier.COMMON, [Moves.TRAILBLAZE]: ModifierTier.COMMON, [Moves.CHILLING_WATER]: ModifierTier.COMMON, + [Moves.HARD_PRESS]: ModifierTier.GREAT, [Moves.DRAGON_CHEER]: ModifierTier.COMMON, - //[Moves.PAIN_SPLIT]: ModifierTier.COMMON, - //[Moves.DOUBLE_EDGE]: ModifierTier.ULTRA, - //[Moves.ENDEAVOR]: ModifierTier.COMMON, - //[Moves.PETAL_BLIZZARD]: ModifierTier.GREAT, - //[Moves.TEMPER_FLARE]: ModifierTier.GREAT, - //[Moves.SUPERCELL_SLAM]: ModifierTier.GREAT, - //[Moves.FEATHER_DANCE]: ModifierTier.COMMON, - //[Moves.METAL_SOUND]: ModifierTier.COMMON, - //[Moves.CURSE]: ModifierTier.COMMON, - //[Moves.HARD_PRESS]: ModifierTier.GREAT, - //[Moves.ALLURING_VOICE]: ModifierTier.GREAT, - //[Moves.PSYCHIC_NOISE]: ModifierTier.GREAT, - //[Moves.UPPER_HAND]: ModifierTier.COMMON, + [Moves.ALLURING_VOICE]: ModifierTier.GREAT, + [Moves.TEMPER_FLARE]: ModifierTier.GREAT, + [Moves.SUPERCELL_SLAM]: ModifierTier.GREAT, + [Moves.PSYCHIC_NOISE]: ModifierTier.GREAT, + [Moves.UPPER_HAND]: ModifierTier.COMMON, }; \ No newline at end of file