Fix effect spore immunities, tera blast TM distribution, and IVs shown on catch (#388)
* Fix effect spore, tera blast distribution, and IVs shown on catch * Forgot to add tms * Unown does not learn any TMs * Fix some tera blast learns * delelele whooooop
This commit is contained in:
parent
5a6ea40dae
commit
0f153d39b1
|
@ -679,6 +679,19 @@ export class PostDefendContactApplyStatusEffectAbAttr extends PostDefendAbAttr {
|
|||
}
|
||||
}
|
||||
|
||||
export class EffectSporeAbAttr extends PostDefendContactApplyStatusEffectAbAttr {
|
||||
constructor() {
|
||||
super(10, StatusEffect.POISON, StatusEffect.PARALYSIS, StatusEffect.SLEEP);
|
||||
}
|
||||
|
||||
applyPostDefend(pokemon: Pokemon, passive: boolean, attacker: Pokemon, move: PokemonMove, hitResult: HitResult, args: any[]): boolean {
|
||||
if (attacker.hasAbility(Abilities.OVERCOAT) || attacker.isOfType(Type.GRASS)) {
|
||||
return false;
|
||||
}
|
||||
return super.applyPostDefend(pokemon, passive, attacker, move, hitResult, args);
|
||||
}
|
||||
}
|
||||
|
||||
export class PostDefendContactApplyTagChanceAbAttr extends PostDefendAbAttr {
|
||||
private chance: integer;
|
||||
private tagType: BattlerTagType;
|
||||
|
@ -2572,7 +2585,7 @@ export function initAbilities() {
|
|||
.attr(TypeImmunityAbAttr, Type.GROUND, (pokemon: Pokemon) => !pokemon.getTag(BattlerTagType.IGNORE_FLYING) && !pokemon.scene.arena.getTag(ArenaTagType.GRAVITY) && !pokemon.getTag(BattlerTagType.GROUNDED))
|
||||
.ignorable(),
|
||||
new Ability(Abilities.EFFECT_SPORE, 3)
|
||||
.attr(PostDefendContactApplyStatusEffectAbAttr, 10, StatusEffect.POISON, StatusEffect.PARALYSIS, StatusEffect.SLEEP),
|
||||
.attr(EffectSporeAbAttr),
|
||||
new Ability(Abilities.SYNCHRONIZE, 3)
|
||||
.attr(SyncEncounterNatureAbAttr)
|
||||
.unimplemented(),
|
||||
|
|
435
src/data/tms.ts
435
src/data/tms.ts
|
@ -29550,7 +29550,6 @@ export const tmSpecies: TmSpecies = {
|
|||
Species.MURKROW,
|
||||
Species.SLOWKING,
|
||||
Species.MISDREAVUS,
|
||||
Species.UNOWN,
|
||||
Species.GIRAFARIG,
|
||||
Species.PINECO,
|
||||
Species.FORRETRESS,
|
||||
|
@ -62012,21 +62011,49 @@ export const tmSpecies: TmSpecies = {
|
|||
Species.ALOLA_MAROWAK,
|
||||
],
|
||||
[Moves.TERA_BLAST]: [
|
||||
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,
|
||||
|
@ -62042,16 +62069,31 @@ export const tmSpecies: TmSpecies = {
|
|||
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,
|
||||
|
@ -62059,20 +62101,52 @@ export const tmSpecies: TmSpecies = {
|
|||
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,
|
||||
|
@ -62082,21 +62156,37 @@ export const tmSpecies: TmSpecies = {
|
|||
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,
|
||||
|
@ -62120,8 +62210,12 @@ export const tmSpecies: TmSpecies = {
|
|||
Species.FORRETRESS,
|
||||
Species.DUNSPARCE,
|
||||
Species.GLIGAR,
|
||||
Species.STEELIX,
|
||||
Species.SNUBBULL,
|
||||
Species.GRANBULL,
|
||||
Species.QWILFISH,
|
||||
Species.SCIZOR,
|
||||
Species.SHUCKLE,
|
||||
Species.HERACROSS,
|
||||
Species.SNEASEL,
|
||||
Species.TEDDIURSA,
|
||||
|
@ -62130,24 +62224,58 @@ export const tmSpecies: TmSpecies = {
|
|||
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.TREECKO,
|
||||
Species.GROVYLE,
|
||||
Species.SCEPTILE,
|
||||
Species.TORCHIC,
|
||||
Species.COMBUSKEN,
|
||||
Species.BLAZIKEN,
|
||||
Species.MUDKIP,
|
||||
Species.MARSHTOMP,
|
||||
Species.SWAMPERT,
|
||||
Species.POOCHYENA,
|
||||
Species.MIGHTYENA,
|
||||
Species.ZIGZAGOON,
|
||||
Species.LINOONE,
|
||||
Species.BEAUTIFLY,
|
||||
Species.DUSTOX,
|
||||
Species.LOTAD,
|
||||
Species.LOMBRE,
|
||||
Species.LUDICOLO,
|
||||
Species.SEEDOT,
|
||||
Species.NUZLEAF,
|
||||
Species.SHIFTRY,
|
||||
Species.TAILLOW,
|
||||
Species.SWELLOW,
|
||||
Species.WINGULL,
|
||||
Species.PELIPPER,
|
||||
Species.RALTS,
|
||||
|
@ -62160,49 +62288,101 @@ export const tmSpecies: TmSpecies = {
|
|||
Species.SLAKOTH,
|
||||
Species.VIGOROTH,
|
||||
Species.SLAKING,
|
||||
Species.NINCADA,
|
||||
Species.NINJASK,
|
||||
Species.SHEDINJA,
|
||||
Species.WHISMUR,
|
||||
Species.LOUDRED,
|
||||
Species.EXPLOUD,
|
||||
Species.MAKUHITA,
|
||||
Species.HARIYAMA,
|
||||
Species.AZURILL,
|
||||
Species.NOSEPASS,
|
||||
Species.SKITTY,
|
||||
Species.DELCATTY,
|
||||
Species.SABLEYE,
|
||||
Species.MAWILE,
|
||||
Species.ARON,
|
||||
Species.LAIRON,
|
||||
Species.AGGRON,
|
||||
Species.MEDITITE,
|
||||
Species.MEDICHAM,
|
||||
Species.ELECTRIKE,
|
||||
Species.MANECTRIC,
|
||||
Species.PLUSLE,
|
||||
Species.MINUN,
|
||||
Species.VOLBEAT,
|
||||
Species.ILLUMISE,
|
||||
Species.ROSELIA,
|
||||
Species.GULPIN,
|
||||
Species.SWALOT,
|
||||
Species.CARVANHA,
|
||||
Species.SHARPEDO,
|
||||
Species.WAILMER,
|
||||
Species.WAILORD,
|
||||
Species.NUMEL,
|
||||
Species.CAMERUPT,
|
||||
Species.TORKOAL,
|
||||
Species.SPOINK,
|
||||
Species.GRUMPIG,
|
||||
Species.SPINDA,
|
||||
Species.TRAPINCH,
|
||||
Species.VIBRAVA,
|
||||
Species.FLYGON,
|
||||
Species.CACNEA,
|
||||
Species.CACTURNE,
|
||||
Species.SWABLU,
|
||||
Species.ALTARIA,
|
||||
Species.ZANGOOSE,
|
||||
Species.SEVIPER,
|
||||
Species.LUNATONE,
|
||||
Species.SOLROCK,
|
||||
Species.BARBOACH,
|
||||
Species.WHISCASH,
|
||||
Species.CORPHISH,
|
||||
Species.CRAWDAUNT,
|
||||
Species.BALTOY,
|
||||
Species.CLAYDOL,
|
||||
Species.LILEEP,
|
||||
Species.CRADILY,
|
||||
Species.ANORITH,
|
||||
Species.ARMALDO,
|
||||
Species.FEEBAS,
|
||||
Species.MILOTIC,
|
||||
Species.CASTFORM,
|
||||
Species.KECLEON,
|
||||
Species.SHUPPET,
|
||||
Species.BANETTE,
|
||||
Species.DUSKULL,
|
||||
Species.DUSCLOPS,
|
||||
Species.TROPIUS,
|
||||
Species.CHIMECHO,
|
||||
Species.ABSOL,
|
||||
Species.SNORUNT,
|
||||
Species.GLALIE,
|
||||
Species.SPHEAL,
|
||||
Species.SEALEO,
|
||||
Species.WALREIN,
|
||||
Species.CLAMPERL,
|
||||
Species.HUNTAIL,
|
||||
Species.GOREBYSS,
|
||||
Species.RELICANTH,
|
||||
Species.LUVDISC,
|
||||
Species.BAGON,
|
||||
Species.SHELGON,
|
||||
Species.SALAMENCE,
|
||||
Species.METANG,
|
||||
Species.METAGROSS,
|
||||
Species.REGIROCK,
|
||||
Species.REGICE,
|
||||
Species.REGISTEEL,
|
||||
Species.LATIAS,
|
||||
Species.LATIOS,
|
||||
Species.KYOGRE,
|
||||
Species.GROUDON,
|
||||
Species.RAYQUAZA,
|
||||
Species.JIRACHI,
|
||||
Species.DEOXYS,
|
||||
Species.TURTWIG,
|
||||
Species.GROTLE,
|
||||
Species.TORTERRA,
|
||||
|
@ -62215,30 +62395,49 @@ export const tmSpecies: TmSpecies = {
|
|||
Species.STARLY,
|
||||
Species.STARAVIA,
|
||||
Species.STARAPTOR,
|
||||
Species.BIDOOF,
|
||||
Species.BIBAREL,
|
||||
Species.KRICKETOT,
|
||||
Species.KRICKETUNE,
|
||||
Species.SHINX,
|
||||
Species.LUXIO,
|
||||
Species.LUXRAY,
|
||||
Species.BUDEW,
|
||||
Species.ROSERADE,
|
||||
Species.CRANIDOS,
|
||||
Species.RAMPARDOS,
|
||||
Species.SHIELDON,
|
||||
Species.BASTIODON,
|
||||
Species.BURMY,
|
||||
Species.WORMADAM,
|
||||
Species.MOTHIM,
|
||||
Species.COMBEE,
|
||||
Species.VESPIQUEN,
|
||||
Species.PACHIRISU,
|
||||
Species.BUIZEL,
|
||||
Species.FLOATZEL,
|
||||
Species.CHERUBI,
|
||||
Species.CHERRIM,
|
||||
Species.SHELLOS,
|
||||
Species.GASTRODON,
|
||||
Species.AMBIPOM,
|
||||
Species.DRIFLOON,
|
||||
Species.DRIFBLIM,
|
||||
Species.BUNEARY,
|
||||
Species.LOPUNNY,
|
||||
Species.MISMAGIUS,
|
||||
Species.HONCHKROW,
|
||||
Species.GLAMEOW,
|
||||
Species.PURUGLY,
|
||||
Species.CHINGLING,
|
||||
Species.STUNKY,
|
||||
Species.SKUNTANK,
|
||||
Species.BRONZOR,
|
||||
Species.BRONZONG,
|
||||
Species.BONSLY,
|
||||
Species.MIME_JR,
|
||||
Species.HAPPINY,
|
||||
Species.CHATOT,
|
||||
Species.SPIRITOMB,
|
||||
Species.GIBLE,
|
||||
Species.GABITE,
|
||||
|
@ -62248,19 +62447,30 @@ export const tmSpecies: TmSpecies = {
|
|||
Species.LUCARIO,
|
||||
Species.HIPPOPOTAS,
|
||||
Species.HIPPOWDON,
|
||||
Species.SKORUPI,
|
||||
Species.DRAPION,
|
||||
Species.CROAGUNK,
|
||||
Species.TOXICROAK,
|
||||
Species.CARNIVINE,
|
||||
Species.FINNEON,
|
||||
Species.LUMINEON,
|
||||
Species.MANTYKE,
|
||||
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.GALLADE,
|
||||
Species.PROBOPASS,
|
||||
Species.DUSKNOIR,
|
||||
|
@ -62272,39 +62482,127 @@ export const tmSpecies: TmSpecies = {
|
|||
Species.DIALGA,
|
||||
Species.PALKIA,
|
||||
Species.HEATRAN,
|
||||
Species.REGIGIGAS,
|
||||
Species.GIRATINA,
|
||||
Species.CRESSELIA,
|
||||
Species.PHIONE,
|
||||
Species.MANAPHY,
|
||||
Species.DARKRAI,
|
||||
Species.SHAYMIN,
|
||||
Species.ARCEUS,
|
||||
Species.VICTINI,
|
||||
Species.SNIVY,
|
||||
Species.SERVINE,
|
||||
Species.SERPERIOR,
|
||||
Species.TEPIG,
|
||||
Species.PIGNITE,
|
||||
Species.EMBOAR,
|
||||
Species.OSHAWOTT,
|
||||
Species.DEWOTT,
|
||||
Species.SAMUROTT,
|
||||
Species.PATRAT,
|
||||
Species.WATCHOG,
|
||||
Species.LILLIPUP,
|
||||
Species.HERDIER,
|
||||
Species.STOUTLAND,
|
||||
Species.PURRLOIN,
|
||||
Species.LIEPARD,
|
||||
Species.PANSAGE,
|
||||
Species.SIMISAGE,
|
||||
Species.PANSEAR,
|
||||
Species.SIMISEAR,
|
||||
Species.PANPOUR,
|
||||
Species.SIMIPOUR,
|
||||
Species.MUNNA,
|
||||
Species.MUSHARNA,
|
||||
Species.PIDOVE,
|
||||
Species.TRANQUILL,
|
||||
Species.UNFEZANT,
|
||||
Species.BLITZLE,
|
||||
Species.ZEBSTRIKA,
|
||||
Species.ROGGENROLA,
|
||||
Species.BOLDORE,
|
||||
Species.GIGALITH,
|
||||
Species.WOOBAT,
|
||||
Species.SWOOBAT,
|
||||
Species.DRILBUR,
|
||||
Species.EXCADRILL,
|
||||
Species.AUDINO,
|
||||
Species.TIMBURR,
|
||||
Species.GURDURR,
|
||||
Species.CONKELDURR,
|
||||
Species.TYMPOLE,
|
||||
Species.PALPITOAD,
|
||||
Species.SEISMITOAD,
|
||||
Species.THROH,
|
||||
Species.SAWK,
|
||||
Species.SEWADDLE,
|
||||
Species.SWADLOON,
|
||||
Species.LEAVANNY,
|
||||
Species.VENIPEDE,
|
||||
Species.WHIRLIPEDE,
|
||||
Species.SCOLIPEDE,
|
||||
Species.COTTONEE,
|
||||
Species.WHIMSICOTT,
|
||||
Species.PETILIL,
|
||||
Species.LILLIGANT,
|
||||
Species.BASCULIN,
|
||||
Species.SANDILE,
|
||||
Species.KROKOROK,
|
||||
Species.KROOKODILE,
|
||||
Species.DARUMAKA,
|
||||
Species.DARMANITAN,
|
||||
Species.MARACTUS,
|
||||
Species.DWEBBLE,
|
||||
Species.CRUSTLE,
|
||||
Species.SCRAGGY,
|
||||
Species.SCRAFTY,
|
||||
Species.SIGILYPH,
|
||||
Species.YAMASK,
|
||||
Species.COFAGRIGUS,
|
||||
Species.TIRTOUGA,
|
||||
Species.CARRACOSTA,
|
||||
Species.ARCHEN,
|
||||
Species.ARCHEOPS,
|
||||
Species.TRUBBISH,
|
||||
Species.GARBODOR,
|
||||
Species.ZORUA,
|
||||
Species.ZOROARK,
|
||||
Species.MINCCINO,
|
||||
Species.CINCCINO,
|
||||
Species.GOTHITA,
|
||||
Species.GOTHORITA,
|
||||
Species.GOTHITELLE,
|
||||
Species.SOLOSIS,
|
||||
Species.DUOSION,
|
||||
Species.REUNICLUS,
|
||||
Species.DUCKLETT,
|
||||
Species.SWANNA,
|
||||
Species.VANILLITE,
|
||||
Species.VANILLISH,
|
||||
Species.VANILLUXE,
|
||||
Species.DEERLING,
|
||||
Species.SAWSBUCK,
|
||||
Species.EMOLGA,
|
||||
Species.KARRABLAST,
|
||||
Species.ESCAVALIER,
|
||||
Species.FOONGUS,
|
||||
Species.AMOONGUSS,
|
||||
Species.FRILLISH,
|
||||
Species.JELLICENT,
|
||||
Species.ALOMOMOLA,
|
||||
Species.JOLTIK,
|
||||
Species.GALVANTULA,
|
||||
Species.FERROSEED,
|
||||
Species.FERROTHORN,
|
||||
Species.KLINK,
|
||||
Species.KLANG,
|
||||
Species.KLINKLANG,
|
||||
Species.TYNAMO,
|
||||
Species.EELEKTRIK,
|
||||
Species.EELEKTROSS,
|
||||
Species.ELGYEM,
|
||||
Species.BEHEEYEM,
|
||||
Species.LITWICK,
|
||||
Species.LAMPENT,
|
||||
Species.CHANDELURE,
|
||||
|
@ -62314,23 +62612,40 @@ export const tmSpecies: TmSpecies = {
|
|||
Species.CUBCHOO,
|
||||
Species.BEARTIC,
|
||||
Species.CRYOGONAL,
|
||||
Species.SHELMET,
|
||||
Species.ACCELGOR,
|
||||
Species.STUNFISK,
|
||||
Species.MIENFOO,
|
||||
Species.MIENSHAO,
|
||||
Species.DRUDDIGON,
|
||||
Species.GOLETT,
|
||||
Species.GOLURK,
|
||||
Species.PAWNIARD,
|
||||
Species.BISHARP,
|
||||
Species.BOUFFALANT,
|
||||
Species.RUFFLET,
|
||||
Species.BRAVIARY,
|
||||
Species.VULLABY,
|
||||
Species.MANDIBUZZ,
|
||||
Species.HEATMOR,
|
||||
Species.DURANT,
|
||||
Species.DEINO,
|
||||
Species.ZWEILOUS,
|
||||
Species.HYDREIGON,
|
||||
Species.LARVESTA,
|
||||
Species.VOLCARONA,
|
||||
Species.COBALION,
|
||||
Species.TERRAKION,
|
||||
Species.VIRIZION,
|
||||
Species.TORNADUS,
|
||||
Species.THUNDURUS,
|
||||
Species.RESHIRAM,
|
||||
Species.ZEKROM,
|
||||
Species.LANDORUS,
|
||||
Species.KYUREM,
|
||||
Species.KELDEO,
|
||||
Species.MELOETTA,
|
||||
Species.GENESECT,
|
||||
Species.CHESPIN,
|
||||
Species.QUILLADIN,
|
||||
Species.CHESNAUGHT,
|
||||
|
@ -62345,6 +62660,8 @@ export const tmSpecies: TmSpecies = {
|
|||
'battle-bond',
|
||||
'ash',
|
||||
],
|
||||
Species.BUNNELBY,
|
||||
Species.DIGGERSBY,
|
||||
Species.FLETCHLING,
|
||||
Species.FLETCHINDER,
|
||||
Species.TALONFLAME,
|
||||
|
@ -62354,14 +62671,43 @@ export const tmSpecies: TmSpecies = {
|
|||
Species.LITLEO,
|
||||
Species.PYROAR,
|
||||
Species.FLABEBE,
|
||||
Species.FLOETTE,
|
||||
[
|
||||
Species.FLOETTE,
|
||||
'red',
|
||||
'yellow',
|
||||
'orange',
|
||||
'blue',
|
||||
'white',
|
||||
],
|
||||
Species.FLORGES,
|
||||
Species.SKIDDO,
|
||||
Species.GOGOAT,
|
||||
Species.PANCHAM,
|
||||
Species.PANGORO,
|
||||
Species.FURFROU,
|
||||
Species.ESPURR,
|
||||
Species.MEOWSTIC,
|
||||
Species.HONEDGE,
|
||||
Species.DOUBLADE,
|
||||
Species.AEGISLASH,
|
||||
Species.SPRITZEE,
|
||||
Species.AROMATISSE,
|
||||
Species.SWIRLIX,
|
||||
Species.SLURPUFF,
|
||||
Species.INKAY,
|
||||
Species.MALAMAR,
|
||||
Species.BINACLE,
|
||||
Species.BARBARACLE,
|
||||
Species.SKRELP,
|
||||
Species.DRAGALGE,
|
||||
Species.CLAUNCHER,
|
||||
Species.CLAWITZER,
|
||||
Species.HELIOPTILE,
|
||||
Species.HELIOLISK,
|
||||
Species.TYRUNT,
|
||||
Species.TYRANTRUM,
|
||||
Species.AMAURA,
|
||||
Species.AURORUS,
|
||||
Species.SYLVEON,
|
||||
Species.HAWLUCHA,
|
||||
Species.DEDENNE,
|
||||
|
@ -62372,16 +62718,30 @@ export const tmSpecies: TmSpecies = {
|
|||
Species.KLEFKI,
|
||||
Species.PHANTUMP,
|
||||
Species.TREVENANT,
|
||||
Species.PUMPKABOO,
|
||||
Species.GOURGEIST,
|
||||
Species.BERGMITE,
|
||||
Species.AVALUGG,
|
||||
Species.NOIBAT,
|
||||
Species.NOIVERN,
|
||||
Species.XERNEAS,
|
||||
Species.YVELTAL,
|
||||
Species.ZYGARDE,
|
||||
Species.DIANCIE,
|
||||
Species.HOOPA,
|
||||
Species.VOLCANION,
|
||||
Species.ROWLET,
|
||||
Species.DARTRIX,
|
||||
Species.DECIDUEYE,
|
||||
Species.LITTEN,
|
||||
Species.TORRACAT,
|
||||
Species.INCINEROAR,
|
||||
Species.POPPLIO,
|
||||
Species.BRIONNE,
|
||||
Species.PRIMARINA,
|
||||
Species.PIKIPEK,
|
||||
Species.TRUMBEAK,
|
||||
Species.TOUCANNON,
|
||||
Species.YUNGOOS,
|
||||
Species.GUMSHOOS,
|
||||
Species.GRUBBIN,
|
||||
|
@ -62394,28 +62754,84 @@ export const tmSpecies: TmSpecies = {
|
|||
Species.RIBOMBEE,
|
||||
Species.ROCKRUFF,
|
||||
Species.LYCANROC,
|
||||
Species.WISHIWASHI,
|
||||
Species.MAREANIE,
|
||||
Species.TOXAPEX,
|
||||
Species.MUDBRAY,
|
||||
Species.MUDSDALE,
|
||||
Species.DEWPIDER,
|
||||
Species.ARAQUANID,
|
||||
Species.FOMANTIS,
|
||||
Species.LURANTIS,
|
||||
Species.MORELULL,
|
||||
Species.SHIINOTIC,
|
||||
Species.SALANDIT,
|
||||
Species.SALAZZLE,
|
||||
Species.STUFFUL,
|
||||
Species.BEWEAR,
|
||||
Species.BOUNSWEET,
|
||||
Species.STEENEE,
|
||||
Species.TSAREENA,
|
||||
Species.COMFEY,
|
||||
Species.ORANGURU,
|
||||
Species.PASSIMIAN,
|
||||
Species.WIMPOD,
|
||||
Species.GOLISOPOD,
|
||||
Species.SANDYGAST,
|
||||
Species.PALOSSAND,
|
||||
Species.TYPE_NULL,
|
||||
Species.SILVALLY,
|
||||
Species.MINIOR,
|
||||
Species.KOMALA,
|
||||
Species.TURTONATOR,
|
||||
Species.TOGEDEMARU,
|
||||
Species.MIMIKYU,
|
||||
Species.BRUXISH,
|
||||
Species.DRAMPA,
|
||||
Species.DHELMISE,
|
||||
Species.JANGMO_O,
|
||||
Species.HAKAMO_O,
|
||||
Species.KOMMO_O,
|
||||
Species.TAPU_KOKO,
|
||||
Species.TAPU_LELE,
|
||||
Species.TAPU_BULU,
|
||||
Species.TAPU_FINI,
|
||||
Species.SOLGALEO,
|
||||
Species.LUNALA,
|
||||
Species.NIHILEGO,
|
||||
Species.BUZZWOLE,
|
||||
Species.PHEROMOSA,
|
||||
Species.XURKITREE,
|
||||
Species.CELESTEELA,
|
||||
Species.KARTANA,
|
||||
Species.GUZZLORD,
|
||||
Species.NECROZMA,
|
||||
Species.MAGEARNA,
|
||||
Species.MARSHADOW,
|
||||
Species.POIPOLE,
|
||||
Species.NAGANADEL,
|
||||
Species.STAKATAKA,
|
||||
Species.BLACEPHALON,
|
||||
Species.ZERAORA,
|
||||
Species.ALOLA_RATTATA,
|
||||
Species.ALOLA_RATICATE,
|
||||
Species.ALOLA_RAICHU,
|
||||
Species.ALOLA_SANDSHREW,
|
||||
Species.ALOLA_SANDSLASH,
|
||||
Species.ALOLA_VULPIX,
|
||||
Species.ALOLA_NINETALES,
|
||||
Species.ALOLA_DIGLETT,
|
||||
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.ETERNAL_FLOETTE,
|
||||
Species.GROOKEY,
|
||||
Species.THWACKEY,
|
||||
Species.RILLABOOM,
|
||||
|
@ -62596,21 +63012,6 @@ export const tmSpecies: TmSpecies = {
|
|||
Species.MUNKIDORI,
|
||||
Species.FEZANDIPITI,
|
||||
Species.OGERPON,
|
||||
Species.ALOLA_RAICHU,
|
||||
Species.ALOLA_SANDSHREW,
|
||||
Species.ALOLA_SANDSLASH,
|
||||
Species.ALOLA_VULPIX,
|
||||
Species.ALOLA_NINETALES,
|
||||
Species.ALOLA_DIGLETT,
|
||||
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.ETERNAL_FLOETTE,
|
||||
Species.GALAR_MEOWTH,
|
||||
Species.GALAR_SLOWPOKE,
|
||||
Species.GALAR_SLOWBRO,
|
||||
|
|
|
@ -4095,7 +4095,7 @@ export class AttemptCapturePhase extends PokemonPhase {
|
|||
|
||||
this.scene.pokemonInfoContainer.show(pokemon, true);
|
||||
|
||||
this.scene.gameData.updateSpeciesDexIvs(pokemon.species.speciesId, pokemon.ivs);
|
||||
this.scene.gameData.updateSpeciesDexIvs(pokemon.species.getRootSpeciesId(true), pokemon.ivs);
|
||||
|
||||
this.scene.ui.showText(i18next.t('menu:pokemonCaught', { pokemonName: pokemon.name }), null, () => {
|
||||
const end = () => {
|
||||
|
|
Loading…
Reference in New Issue