Compare commits

..

32 Commits

Author SHA1 Message Date
Jannik Tappert 16533b189f
Update src/locales/de/pokemon-form.json 2024-09-18 09:26:27 +02:00
Jannik Tappert 22a5edd590
Update src/locales/de/pokemon-form.json 2024-09-18 09:25:04 +02:00
Jannik Tappert 2ce7c4a74e
Update src/locales/de/pokemon-form.json 2024-09-18 09:21:44 +02:00
Jannik Tappert b4c6c8c12b
Update src/locales/de/pokemon-form.json 2024-09-18 09:20:58 +02:00
Jannik Tappert 10c21fcd91
Update src/locales/de/pokemon-form.json 2024-09-18 09:20:22 +02:00
Jannik Tappert b2c1ebd961
Update src/locales/de/pokemon-form.json 2024-09-18 09:19:34 +02:00
Jannik Tappert 57d8af9093
Update src/locales/de/pokemon-form.json 2024-09-18 09:18:39 +02:00
Jannik Tappert 90fdf9cea7
Update src/locales/de/pokemon-form.json 2024-09-18 09:17:52 +02:00
Jannik Tappert 752e1c8c1b
Update src/locales/de/pokemon-form.json 2024-09-18 09:15:59 +02:00
Jannik Tappert 405ef19299
Update src/locales/de/pokemon-form.json 2024-09-18 09:15:32 +02:00
Jannik Tappert 71a79f3002
Update src/locales/de/pokemon-form.json 2024-09-18 09:14:14 +02:00
Jannik Tappert 75e24ef876
Update src/locales/de/pokemon-form.json 2024-09-18 09:13:36 +02:00
Jannik Tappert 96378c2a88
Update src/locales/de/pokemon-form.json 2024-09-18 09:09:18 +02:00
Jannik Tappert 0e36275199
Update src/locales/de/pokemon-form.json 2024-09-18 09:08:26 +02:00
Jannik Tappert 59f366d9f2
Update src/locales/de/pokemon-form.json 2024-09-18 09:06:32 +02:00
Jannik Tappert 5d858376ac
Update src/locales/de/pokemon-form.json 2024-09-18 09:05:26 +02:00
Jannik Tappert 0d2f6fb995
Update src/locales/de/pokemon-form.json 2024-09-18 09:05:06 +02:00
Jannik Tappert da8c11c5e8
Update src/locales/de/pokemon-form.json 2024-09-18 09:04:31 +02:00
Jannik Tappert 6cd4ff42eb
Update src/locales/de/pokemon-form.json 2024-09-18 09:04:01 +02:00
Jannik Tappert 30feeee5bd
Update src/locales/de/pokemon-form.json 2024-09-18 09:02:48 +02:00
Lugiad 1a3485ed43
Merge branch 'beta' into formChangeLocale 2024-09-18 02:17:03 +02:00
Lugiad 8fdae0f0ef
Update pokemon-form.json 2024-09-18 02:02:09 +02:00
Lugiad 82f6215806
Update pokemon-form.json 2024-09-18 02:02:06 +02:00
Lugiad 4181f078ae
Update pokemon-form.json 2024-09-18 02:02:02 +02:00
Lugiad 6409fe83b5
Update pokemon-form.json 2024-09-18 02:01:59 +02:00
Lugiad e5180cc89a
Update pokemon-form.json 2024-09-18 02:01:55 +02:00
Lugiad b5a83b689e
Update pokemon-form.json 2024-09-18 02:01:51 +02:00
Lugiad 36e14196de
Update pokemon-form.json 2024-09-18 02:01:47 +02:00
Lugiad a5e27bc3a7
Update pokemon-form.json 2024-09-18 02:01:43 +02:00
Madmadness65 00ba2eebc8
Add new biome BGM by Firel (#4301) 2024-09-17 21:57:34 +01:00
Leo Kim fe69bd2b55
add missing translation for korean (#4295) 2024-09-17 10:50:51 -07:00
Dakurei 1fb5389765
Auto center the window vertically (#2686)
+ When the game is played in landscape format
    or in portrait format when it's not a touchscreen
2024-09-17 17:55:50 +01:00
18 changed files with 767 additions and 14 deletions

View File

@ -55,7 +55,7 @@ Check out [Github Issues](https://github.com/pagefaultgames/pokerogue/issues) to
- Pokémon Sword/Shield - Pokémon Sword/Shield
- Pokémon Legends: Arceus - Pokémon Legends: Arceus
- Pokémon Scarlet/Violet - Pokémon Scarlet/Violet
- Firel (Custom Laboratory, Metropolis, Seabed, and Space biome music) - Firel (Custom Ice Cave, Laboratory, Metropolis, Plains, Power Plant, Seabed, Space, and Volcano biome music)
- Lmz (Custom Jungle biome music) - Lmz (Custom Jungle biome music)
- Andr06 (Custom Slum and Sea biome music) - Andr06 (Custom Slum and Sea biome music)

View File

@ -26,10 +26,36 @@ body {
#app { #app {
display: flex; display: flex;
justify-content: center; justify-content: center;
align-items: center;
} }
#app > div:first-child { #app > div:first-child {
transform-origin: top !important; transform-origin: center !important;
}
/*
Supports automatic vertical centering as suggested in PR#1114, but only via CSS
Condition factorized to deduce CSS rules:
true if (isLandscape && !isMobile() && !hasTouchscreen() || (hasTouchscreen() && !isTouchControlsEnabled))
*/
/* isLandscape && !isMobile() && !hasTouchscreen() */
@media (orientation: landscape) and (pointer: fine) {
#app {
align-items: center;
}
}
@media (pointer: coarse) {
/* hasTouchscreen() && !isTouchControlsEnabled */
body:has(> #touchControls[class=visible]) #app {
align-items: start;
}
body:has(> #touchControls[class=visible]) #app > div:first-child {
transform-origin: top !important;
}
} }
#layout:fullscreen #dpad, #layout:fullscreen { #layout:fullscreen #dpad, #layout:fullscreen {

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

View File

@ -746,7 +746,7 @@ export class Arena {
case Biome.TOWN: case Biome.TOWN:
return 7.288; return 7.288;
case Biome.PLAINS: case Biome.PLAINS:
return 7.693; return 17.485;
case Biome.GRASS: case Biome.GRASS:
return 1.995; return 1.995;
case Biome.TALL_GRASS: case Biome.TALL_GRASS:
@ -774,13 +774,13 @@ export class Arena {
case Biome.DESERT: case Biome.DESERT:
return 1.143; return 1.143;
case Biome.ICE_CAVE: case Biome.ICE_CAVE:
return 15.010; return 0.000;
case Biome.MEADOW: case Biome.MEADOW:
return 3.891; return 3.891;
case Biome.POWER_PLANT: case Biome.POWER_PLANT:
return 2.810; return 9.447;
case Biome.VOLCANO: case Biome.VOLCANO:
return 5.116; return 17.637;
case Biome.GRAVEYARD: case Biome.GRAVEYARD:
return 3.232; return 3.232;
case Biome.DOJO: case Biome.DOJO:

View File

@ -40,9 +40,14 @@
"castformRainy": "Regenform", "castformRainy": "Regenform",
"castformSnowy": "Schneeform", "castformSnowy": "Schneeform",
"deoxysNormal": "Normalform", "deoxysNormal": "Normalform",
"deoxysAttack": "Angriffsform",
"deoxysDefense": "Verteidigungsform",
"deoxysSpeed": "Initiativeform",
"burmyPlant": "Pflanzenumhang", "burmyPlant": "Pflanzenumhang",
"burmySandy": "Sandumhang", "burmySandy": "Sandumhang",
"burmyTrash": "Lumpenumhang", "burmyTrash": "Lumpenumhang",
"cheribiOvercast": "Wolkenform",
"cheribiSunshine": "Sonnenform",
"shellosEast": "Östliches Meer", "shellosEast": "Östliches Meer",
"shellosWest": "Westliches Meer", "shellosWest": "Westliches Meer",
"rotomHeat": "Hitze-Rotom", "rotomHeat": "Hitze-Rotom",
@ -50,21 +55,36 @@
"rotomFrost": "Frost-Rotom", "rotomFrost": "Frost-Rotom",
"rotomFan": "Wirbel-Rotom", "rotomFan": "Wirbel-Rotom",
"rotomMow": "Schneid-Rotom", "rotomMow": "Schneid-Rotom",
"dialgaOrigin": "Urform",
"palkiaOrigin": "Urform",
"giratinaAltered": "Wandelform", "giratinaAltered": "Wandelform",
"giratinaOrigin": "Urform",
"shayminLand": "Landform", "shayminLand": "Landform",
"shayminSky": "Zenitform",
"basculinRedStriped": "Rotlinige Form", "basculinRedStriped": "Rotlinige Form",
"basculinBlueStriped": "Blaulinige Form", "basculinBlueStriped": "Blaulinige Form",
"basculinWhiteStriped": "Weißlinige Form", "basculinWhiteStriped": "Weißlinige Form",
"darumakaZen": "Trance-Modus",
"deerlingSpring": "Frühlingsform", "deerlingSpring": "Frühlingsform",
"deerlingSummer": "Sommerform", "deerlingSummer": "Sommerform",
"deerlingAutumn": "Herbstform", "deerlingAutumn": "Herbstform",
"deerlingWinter": "Winterform", "deerlingWinter": "Winterform",
"tornadusIncarnate": "Inkarnationsform", "tornadusIncarnate": "Inkarnationsform",
"tornadusTherian": "Tiergeistform",
"thundurusIncarnate": "Inkarnationsform", "thundurusIncarnate": "Inkarnationsform",
"thundurusTherian": "Tiergeistform",
"landorusIncarnate": "Inkarnationsform", "landorusIncarnate": "Inkarnationsform",
"landorusTherian": "Tiergeistform",
"kyuremBlack": "Schwarzes Kyurem",
"kyuremWhite": "Weißes Kyurem",
"keldeoOrdinary": "Standardform", "keldeoOrdinary": "Standardform",
"keldeoResolute": "Resolutform",
"meloettaAria": "Gesangsform", "meloettaAria": "Gesangsform",
"meloettaPirouette": "Tanzform", "meloettaPirouette": "Tanzform",
"genesectShock": "Blitzmodul",
"genesectBurn": "Flammenmodul",
"genesectChill": "Gefriermodul",
"genesectDouse": "Aquamodul",
"froakieBattleBond": "Ash-Form", "froakieBattleBond": "Ash-Form",
"scatterbugMeadow": "Blumenmeermuster", "scatterbugMeadow": "Blumenmeermuster",
"scatterbugIcySnow": "Frostmuster", "scatterbugIcySnow": "Frostmuster",
@ -100,6 +120,10 @@
"furfrouLaReine": "Königinnenschnitt", "furfrouLaReine": "Königinnenschnitt",
"furfrouKabuki": "Kabuki-Schnitt", "furfrouKabuki": "Kabuki-Schnitt",
"furfrouPharaoh": "Herrscherschnitt", "furfrouPharaoh": "Herrscherschnitt",
"espurrMale": "männlich",
"espurrFemale": "weiblich",
"honedgeShiled": "Schildform",
"honedgeBlade": "Klingenform",
"pumpkabooSmall": "Größe S", "pumpkabooSmall": "Größe S",
"pumpkabooLarge": "Größe L", "pumpkabooLarge": "Größe L",
"pumpkabooSuper": "Größe XL", "pumpkabooSuper": "Größe XL",
@ -110,11 +134,34 @@
"zygarde50Pc": "50% Form Scharwandel", "zygarde50Pc": "50% Form Scharwandel",
"zygarde10Pc": "10% Form Scharwandel", "zygarde10Pc": "10% Form Scharwandel",
"zygardeComplete": "Optimum-Form", "zygardeComplete": "Optimum-Form",
"hoopaUnbound": "Entfesseltes Hoopa",
"oricorioBaile": "Flamenco-Stil", "oricorioBaile": "Flamenco-Stil",
"oricorioPompom": "Cheerleading-Stil", "oricorioPompom": "Cheerleading-Stil",
"oricorioPau": "Hula-Stil", "oricorioPau": "Hula-Stil",
"oricorioSensu": "Buyo-Stil", "oricorioSensu": "Buyo-Stil",
"rockruffOwnTempo": "Gleichmut", "rockruffOwnTempo": "Gleichmut",
"rockruffMidday": "Tagform",
"rockruffMidnight": "Nachtform",
"rockruffMidnight": "Zwielichtform",
"wishiwashiSchool": "Schwarmform",
"typeNullNormal": "Typ:Normal",
"typeNullFighting": "Typ:Kampf",
"typeNullFlying": "Typ:Flug",
"typeNullPoison": "Typ:Gift",
"typeNullGround": "Typ:Boden",
"typeNullRock": "Typ:Gestein",
"typeNullBug": "Typ:Käfer",
"typeNullGhost": "Typ:Geist",
"typeNullSteel": "Typ:Stahl",
"typeNullFire": "Typ:Feuer",
"typeNullWater": "Typ:Wasser",
"typeNullGrass": "Typ:Pflanze",
"typeNullElectric": "Typ:Elektro",
"typeNullPsychic": "Typ:Psycho",
"typeNullIce": "Typ:Eis",
"typeNullDragon": "Typ:Drache",
"typeNullDark": "Typ:Unlicht",
"typeNullFairy": "Typ:Fee",
"miniorRedMeteor": "Rote-Meteorform", "miniorRedMeteor": "Rote-Meteorform",
"miniorOrangeMeteor": "Oranger-Meteorform", "miniorOrangeMeteor": "Oranger-Meteorform",
"miniorYellowMeteor": "Gelber-Meteorform", "miniorYellowMeteor": "Gelber-Meteorform",
@ -131,25 +178,55 @@
"miniorViolet": "Violetter Kern", "miniorViolet": "Violetter Kern",
"mimikyuDisguised": "Verkleidete Form", "mimikyuDisguised": "Verkleidete Form",
"mimikyuBusted": "Entlarvte Form", "mimikyuBusted": "Entlarvte Form",
"necrozmaDuskMane": "Abendmähne",
"necrozmaDawnWings": "Morgenschwingen",
"necrozmaUltra": "Ultra-Necrozma",
"magearnaOriginal": "Originalfarbe", "magearnaOriginal": "Originalfarbe",
"marshadowZenith": "Zenitform", "marshadowZenith": "Zenitform",
"sinisteaPhony": "Fälschungsform", "sinisteaPhony": "Fälschungsform",
"sinisteaAntique": "Originalform", "sinisteaAntique": "Originalform",
"milceryVanillaCream": "Vanille-Creme",
"milceryRubyCream": "Ruby-Creme",
"milceryMatchaCream": "Matcha-Creme",
"milceryMintCream": "Minz-Creme",
"milceryLemonCream": "Zitronen-Creme",
"milcerySaltedCream": "Salz-Creme",
"milceryRubySwirl": "Ruby-Mix",
"milceryCaramelSwirl": "Karamell-Mix",
"milceryRainbowSwirl": "Trio-Mix",
"eiscueNoIce": "Wohlfühlkopf", "eiscueNoIce": "Wohlfühlkopf",
"indeedeeMale": "männlich", "indeedeeMale": "männlich",
"indeedeeFemale": "weiblich", "indeedeeFemale": "weiblich",
"morpekoFullBelly": "Pappsattmuster", "morpekoFullBelly": "Pappsattmuster",
"morpekoHangry": "Kohldampfmuster",
"zacianHeroOfManyBattles": "Heldenhafter Krieger", "zacianHeroOfManyBattles": "Heldenhafter Krieger",
"zacianCrowned": "König des Schwertes",
"zamazentaHeroOfManyBattles": "Heldenhafter Krieger", "zamazentaHeroOfManyBattles": "Heldenhafter Krieger",
"zamazentaCrowned": "König des Schildes",
"kubfuSingleStrike": "Fokussierter Stil",
"kubfuRapidStrike": "Fließender Stil",
"zarudeDada": "Papa", "zarudeDada": "Papa",
"calyrexIce": "Schimmelreiter",
"calyrexShadow": "Rappenreiter",
"basculinMale": "männlich",
"basculinFemale": "weiblich",
"enamorusIncarnate": "Inkarnationsform", "enamorusIncarnate": "Inkarnationsform",
"enamorusTherian": "Tiergeistform",
"lechonkMale": "männlich",
"lechonkFemale": "weiblich",
"tandemausFour": "Dreierfamilie",
"tandemausThree": "Viererfamilie",
"squawkabillyGreenPlumage": "Grüngefiedert", "squawkabillyGreenPlumage": "Grüngefiedert",
"squawkabillyBluePlumage": "Blaugefiedert", "squawkabillyBluePlumage": "Blaugefiedert",
"squawkabillyYellowPlumage": "Gelbgefiedert", "squawkabillyYellowPlumage": "Gelbgefiedert",
"squawkabillyWhitePlumage": "Weißgefiedert", "squawkabillyWhitePlumage": "Weißgefiedert",
"finizenZero": "Alltagsform",
"finizenZero": "Heldenform",
"tatsugiriCurly": "Gebogene Form", "tatsugiriCurly": "Gebogene Form",
"tatsugiriDroopy": "Hängende Form", "tatsugiriDroopy": "Hängende Form",
"tatsugiriStretchy": "Gestrekte Form", "tatsugiriStretchy": "Gestrekte Form",
"dunsparceTwo": "Zweisegmentform",
"dunsparceThree": "Dreisegmentform",
"gimmighoulChest": "Truhenform", "gimmighoulChest": "Truhenform",
"gimmighoulRoaming": "Wanderform", "gimmighoulRoaming": "Wanderform",
"koraidonApexBuild": "Vollkommene Gestalt", "koraidonApexBuild": "Vollkommene Gestalt",
@ -164,7 +241,20 @@
"miraidonGlideMode": "Gleitmodus", "miraidonGlideMode": "Gleitmodus",
"poltchageistCounterfeit": "Imitationsform", "poltchageistCounterfeit": "Imitationsform",
"poltchageistArtisan": "Kostbarkeitsform", "poltchageistArtisan": "Kostbarkeitsform",
"poltchageistUnremarkable": "Simple Form",
"poltchageistMasterpiece": "Edle Form",
"ogerponTealMask": "Türkisgrüne Maske",
"ogerponTealMaskTera": "Türkisgrüne Maske (Terakristallisiert)",
"ogerponWellspringMask": "Brunnenmaske",
"ogerponWellspringMaskTera": "Brunnenmaske (Terakristallisiert)",
"ogerponHearthflameMask": "Ofenmaske",
"ogerponHearthflameMaskTera": "Ofenmaske (Terakristallisiert)",
"ogerponCornerstoneMask": "Fundamentmaske",
"ogerponCornerstoneMaskTera": "Fundamentmaske (Terakristallisiert)",
"terpagosTerastal": "Terakristall-Form",
"terpagosStellar": "Stellarform",
"galarDarumakaZen": "Trance-Modus",
"paldeaTaurosCombat": "Gefechtsvariante", "paldeaTaurosCombat": "Gefechtsvariante",
"paldeaTaurosBlaze": "Flammenvariante", "paldeaTaurosBlaze": "Flammenvariante",
"paldeaTaurosAqua": "Flutenvariante" "paldeaTaurosAqua": "Flutenvariante"
} }

View File

@ -108,7 +108,7 @@
"forest": "PMD EoS Dusk Forest", "forest": "PMD EoS Dusk Forest",
"grass": "PMD EoS Apple Woods", "grass": "PMD EoS Apple Woods",
"graveyard": "PMD EoS Mystifying Forest", "graveyard": "PMD EoS Mystifying Forest",
"ice_cave": "PMD EoS Vast Ice Mountain", "ice_cave": "Firel - -60F",
"island": "PMD EoS Craggy Coast", "island": "PMD EoS Craggy Coast",
"jungle": "Lmz - Jungle", "jungle": "Lmz - Jungle",
"laboratory": "Firel - Laboratory", "laboratory": "Firel - Laboratory",
@ -116,8 +116,8 @@
"meadow": "PMD EoS Sky Peak Forest", "meadow": "PMD EoS Sky Peak Forest",
"metropolis": "Firel - Metropolis", "metropolis": "Firel - Metropolis",
"mountain": "PMD EoS Mt. Horn", "mountain": "PMD EoS Mt. Horn",
"plains": "PMD EoS Sky Peak Prairie", "plains": "Firel - Route 888",
"power_plant": "PMD EoS Far Amp Plains", "power_plant": "Firel - The Klink",
"ruins": "PMD EoS Deep Sealed Ruin", "ruins": "PMD EoS Deep Sealed Ruin",
"sea": "Andr06 - Marine Mystique", "sea": "Andr06 - Marine Mystique",
"seabed": "Firel - Seabed", "seabed": "Firel - Seabed",
@ -128,7 +128,7 @@
"tall_grass": "PMD EoS Foggy Forest", "tall_grass": "PMD EoS Foggy Forest",
"temple": "PMD EoS Aegis Cave", "temple": "PMD EoS Aegis Cave",
"town": "PMD EoS Random Dungeon Theme 3", "town": "PMD EoS Random Dungeon Theme 3",
"volcano": "PMD EoS Steam Cave", "volcano": "Firel - Twisturn Volcano",
"wasteland": "PMD EoS Hidden Highland", "wasteland": "PMD EoS Hidden Highland",
"encounter_ace_trainer": "BW Trainers' Eyes Meet (Ace Trainer)", "encounter_ace_trainer": "BW Trainers' Eyes Meet (Ace Trainer)",
"encounter_backpacker": "BW Trainers' Eyes Meet (Backpacker)", "encounter_backpacker": "BW Trainers' Eyes Meet (Backpacker)",

View File

@ -40,9 +40,14 @@
"castformRainy": "Lluvia", "castformRainy": "Lluvia",
"castformSnowy": "Nieve", "castformSnowy": "Nieve",
"deoxysNormal": "Normal", "deoxysNormal": "Normal",
"deoxysAttack": "Attack",
"deoxysDefense": "Defense",
"deoxysSpeed": "Speed",
"burmyPlant": "Planta", "burmyPlant": "Planta",
"burmySandy": "Arena", "burmySandy": "Arena",
"burmyTrash": "Basura", "burmyTrash": "Basura",
"cheribiOvercast": "Overcast",
"cheribiSunshine": "Sunshine",
"shellosEast": "Este", "shellosEast": "Este",
"shellosWest": "Oeste", "shellosWest": "Oeste",
"rotomHeat": "Calor", "rotomHeat": "Calor",
@ -50,21 +55,36 @@
"rotomFrost": "Frío", "rotomFrost": "Frío",
"rotomFan": "Ventilador", "rotomFan": "Ventilador",
"rotomMow": "Corte", "rotomMow": "Corte",
"dialgaOrigin": "Origin",
"palkiaOrigin": "Origin",
"giratinaAltered": "Modificada", "giratinaAltered": "Modificada",
"giratinaOrigin": "Origin",
"shayminLand": "Tierra", "shayminLand": "Tierra",
"shayminSky": "Sky",
"basculinRedStriped": "Raya Roja", "basculinRedStriped": "Raya Roja",
"basculinBlueStriped": "Raya Azul", "basculinBlueStriped": "Raya Azul",
"basculinWhiteStriped": "Raya Blanca", "basculinWhiteStriped": "Raya Blanca",
"darumakaZen": "Zen",
"deerlingSpring": "Primavera", "deerlingSpring": "Primavera",
"deerlingSummer": "Verano", "deerlingSummer": "Verano",
"deerlingAutumn": "Otoño", "deerlingAutumn": "Otoño",
"deerlingWinter": "Invierno", "deerlingWinter": "Invierno",
"tornadusIncarnate": "Avatar", "tornadusIncarnate": "Avatar",
"tornadusTherian": "Therian",
"thundurusIncarnate": "Avatar", "thundurusIncarnate": "Avatar",
"thundurusTherian": "Therian",
"landorusIncarnate": "Avatar", "landorusIncarnate": "Avatar",
"landorusTherian": "Therian",
"kyuremBlack": "Black",
"kyuremWhite": "White",
"keldeoOrdinary": "Habitual", "keldeoOrdinary": "Habitual",
"keldeoResolute": "Resolute",
"meloettaAria": "Lírica", "meloettaAria": "Lírica",
"meloettaPirouette": "Danza", "meloettaPirouette": "Danza",
"genesectShock": "Shock Drive",
"genesectBurn": "Burn Drive",
"genesectChill": "Chill Drive",
"genesectDouse": "Douse Drive",
"froakieBattleBond": "Fuerte Afecto", "froakieBattleBond": "Fuerte Afecto",
"scatterbugMeadow": "Floral", "scatterbugMeadow": "Floral",
"scatterbugIcySnow": "Polar", "scatterbugIcySnow": "Polar",
@ -100,6 +120,10 @@
"furfrouLaReine": "Aristócrata", "furfrouLaReine": "Aristócrata",
"furfrouKabuki": "Kabuki", "furfrouKabuki": "Kabuki",
"furfrouPharaoh": "Faraónico", "furfrouPharaoh": "Faraónico",
"espurrMale": "Male",
"espurrFemale": "Female",
"honedgeShiled": "Shield",
"honedgeBlade": "Blade",
"pumpkabooSmall": "Pequeño", "pumpkabooSmall": "Pequeño",
"pumpkabooLarge": "Grande", "pumpkabooLarge": "Grande",
"pumpkabooSuper": "Enorme", "pumpkabooSuper": "Enorme",
@ -110,11 +134,34 @@
"zygarde50Pc": "Zygarde al 50%", "zygarde50Pc": "Zygarde al 50%",
"zygarde10Pc": "Zygarde al 10%", "zygarde10Pc": "Zygarde al 10%",
"zygardeComplete": "Zygarde Completo", "zygardeComplete": "Zygarde Completo",
"hoopaUnbound": "Unbound",
"oricorioBaile": "Apasionado", "oricorioBaile": "Apasionado",
"oricorioPompom": "Animado", "oricorioPompom": "Animado",
"oricorioPau": "Plácido", "oricorioPau": "Plácido",
"oricorioSensu": "Refinado", "oricorioSensu": "Refinado",
"rockruffOwnTempo": "Ritmo Propio", "rockruffOwnTempo": "Ritmo Propio",
"rockruffMidday": "Midday",
"rockruffMidnight": "Midnight",
"rockruffMidnight": "Dusk",
"wishiwashiSchool": "School",
"typeNullNormal": "Type: Normal",
"typeNullFighting": "Type: Fighting",
"typeNullFlying": "Type: Flying",
"typeNullPoison": "Type: Poison",
"typeNullGround": "Type: Ground",
"typeNullRock": "Type: Rock",
"typeNullBug": "Type: Bug",
"typeNullGhost": "Type: Ghost",
"typeNullSteel": "Type: Steel",
"typeNullFire": "Type: Fire",
"typeNullWater": "Type: Water",
"typeNullGrass": "Type: Grass",
"typeNullElectric": "Type: Electric",
"typeNullPsychic": "Type: Psychic",
"typeNullIce": "Type: Ice",
"typeNullDragon": "Type: Dragon",
"typeNullDark": "Type: Dark",
"typeNullFairy": "Type: Fairy",
"miniorRedMeteor": "Núcleo Rojo", "miniorRedMeteor": "Núcleo Rojo",
"miniorOrangeMeteor": "Núcleo Naranja", "miniorOrangeMeteor": "Núcleo Naranja",
"miniorYellowMeteor": "Núcleo Amarillo", "miniorYellowMeteor": "Núcleo Amarillo",
@ -131,25 +178,55 @@
"miniorViolet": "Violeta", "miniorViolet": "Violeta",
"mimikyuDisguised": "Encubierta", "mimikyuDisguised": "Encubierta",
"mimikyuBusted": "Descubierta", "mimikyuBusted": "Descubierta",
"necrozmaDuskMane": "Dusk Mane",
"necrozmaDawnWings": "Dawn Wings",
"necrozmaUltra": "Ultra",
"magearnaOriginal": "Vetusto", "magearnaOriginal": "Vetusto",
"marshadowZenith": "Cénit", "marshadowZenith": "Cénit",
"sinisteaPhony": "Falsificada", "sinisteaPhony": "Falsificada",
"sinisteaAntique": "Genuina", "sinisteaAntique": "Genuina",
"milceryVanillaCream": "Vanilla Cream",
"milceryRubyCream": "Ruby Cream",
"milceryMatchaCream": "Matcha Cream",
"milceryMintCream": "Mint Cream",
"milceryLemonCream": "Lemon Cream",
"milcerySaltedCream": "Salted Cream",
"milceryRubySwirl": "Ruby Swirl",
"milceryCaramelSwirl": "Caramel Swirl",
"milceryRainbowSwirl": "Rainbow Swirl",
"eiscueNoIce": "Cara Deshielo", "eiscueNoIce": "Cara Deshielo",
"indeedeeMale": "Macho", "indeedeeMale": "Macho",
"indeedeeFemale": "Hembra", "indeedeeFemale": "Hembra",
"morpekoFullBelly": "Saciada", "morpekoFullBelly": "Saciada",
"morpekoHangry": "Hangry",
"zacianHeroOfManyBattles": "Guerrero avezado", "zacianHeroOfManyBattles": "Guerrero avezado",
"zacianCrowned": "Crowned",
"zamazentaHeroOfManyBattles": "Guerrero avezado", "zamazentaHeroOfManyBattles": "Guerrero avezado",
"zamazentaCrowned": "Crowned",
"kubfuSingleStrike": "Single Strike",
"kubfuRapidStrike": "Rapid Strike",
"zarudeDada": "Papá", "zarudeDada": "Papá",
"calyrexIce": "Ice Rider",
"calyrexShadow": "Shadow Rider",
"basculinMale": "Male",
"basculinFemale": "Female",
"enamorusIncarnate": "Avatar", "enamorusIncarnate": "Avatar",
"enamorusTherian": "Therian",
"lechonkMale": "Male",
"lechonkFemale": "Female",
"tandemausFour": "Family of Four",
"tandemausThree": "Family of Three",
"squawkabillyGreenPlumage": "Plumaje Verde", "squawkabillyGreenPlumage": "Plumaje Verde",
"squawkabillyBluePlumage": "Plumaje Azul", "squawkabillyBluePlumage": "Plumaje Azul",
"squawkabillyYellowPlumage": "Plumaje Amarillo", "squawkabillyYellowPlumage": "Plumaje Amarillo",
"squawkabillyWhitePlumage": "Plumaje Blanco", "squawkabillyWhitePlumage": "Plumaje Blanco",
"finizenZero": "Zero",
"finizenZero": "Hero",
"tatsugiriCurly": "Curvada", "tatsugiriCurly": "Curvada",
"tatsugiriDroopy": "Lánguida", "tatsugiriDroopy": "Lánguida",
"tatsugiriStretchy": "Estirada", "tatsugiriStretchy": "Estirada",
"dunsparceTwo": "Two-Segment",
"dunsparceThree": "Three-Segment",
"gimmighoulChest": "Cofre", "gimmighoulChest": "Cofre",
"gimmighoulRoaming": "Andante", "gimmighoulRoaming": "Andante",
"koraidonApexBuild": "Forma Plena", "koraidonApexBuild": "Forma Plena",
@ -164,6 +241,19 @@
"miraidonGlideMode": "Modo Planeo", "miraidonGlideMode": "Modo Planeo",
"poltchageistCounterfeit": "Fraudulenta", "poltchageistCounterfeit": "Fraudulenta",
"poltchageistArtisan": "Opulenta", "poltchageistArtisan": "Opulenta",
"poltchageistUnremarkable": "Unremarkable",
"poltchageistMasterpiece": "Masterpiece",
"ogerponTealMask": "Teal Mask",
"ogerponTealMaskTera": "Teal Mask Terastallized",
"ogerponWellspringMask": "Wellspring Mask",
"ogerponWellspringMaskTera": "Wellspring Mask Terastallized",
"ogerponHearthflameMask": "Hearthflame Mask",
"ogerponHearthflameMaskTera": "Hearthflame Mask Terastallized",
"ogerponCornerstoneMask": "Cornerstone Mask",
"ogerponCornerstoneMaskTera": "Cornerstone Mask Terastallized",
"terpagosTerastal": "Terastal",
"terpagosStellar": "Stellar",
"galarDarumakaZen": "Zen",
"paldeaTaurosCombat": "Combatiente", "paldeaTaurosCombat": "Combatiente",
"paldeaTaurosBlaze": "Ardiente", "paldeaTaurosBlaze": "Ardiente",
"paldeaTaurosAqua": "Acuático" "paldeaTaurosAqua": "Acuático"

View File

@ -40,9 +40,14 @@
"castformRainy": "Pioggia", "castformRainy": "Pioggia",
"castformSnowy": "Nuvola di neve", "castformSnowy": "Nuvola di neve",
"deoxysNormal": "Normale", "deoxysNormal": "Normale",
"deoxysAttack": "Attack",
"deoxysDefense": "Defense",
"deoxysSpeed": "Speed",
"burmyPlant": "Pianta", "burmyPlant": "Pianta",
"burmySandy": "Sabbia", "burmySandy": "Sabbia",
"burmyTrash": "Scarti", "burmyTrash": "Scarti",
"cheribiOvercast": "Overcast",
"cheribiSunshine": "Sunshine",
"shellosEast": "Est", "shellosEast": "Est",
"shellosWest": "Ovest", "shellosWest": "Ovest",
"rotomHeat": "Calore", "rotomHeat": "Calore",
@ -50,21 +55,36 @@
"rotomFrost": "Gelo", "rotomFrost": "Gelo",
"rotomFan": "Vortice", "rotomFan": "Vortice",
"rotomMow": "Taglio", "rotomMow": "Taglio",
"dialgaOrigin": "Origin",
"palkiaOrigin": "Origin",
"giratinaAltered": "Alterata", "giratinaAltered": "Alterata",
"giratinaOrigin": "Origin",
"shayminLand": "Terra", "shayminLand": "Terra",
"shayminSky": "Sky",
"basculinRedStriped": "Linearossa", "basculinRedStriped": "Linearossa",
"basculinBlueStriped": "Lineablu", "basculinBlueStriped": "Lineablu",
"basculinWhiteStriped": "Lineabianca", "basculinWhiteStriped": "Lineabianca",
"darumakaZen": "Zen",
"deerlingSpring": "Primavera", "deerlingSpring": "Primavera",
"deerlingSummer": "Estate", "deerlingSummer": "Estate",
"deerlingAutumn": "Autunno", "deerlingAutumn": "Autunno",
"deerlingWinter": "Inverno", "deerlingWinter": "Inverno",
"tornadusIncarnate": "Incarnazione", "tornadusIncarnate": "Incarnazione",
"tornadusTherian": "Therian",
"thundurusIncarnate": "Incarnazione", "thundurusIncarnate": "Incarnazione",
"thundurusTherian": "Therian",
"landorusIncarnate": "Incarnazione", "landorusIncarnate": "Incarnazione",
"landorusTherian": "Therian",
"kyuremBlack": "Black",
"kyuremWhite": "White",
"keldeoOrdinary": "Normale", "keldeoOrdinary": "Normale",
"keldeoResolute": "Resolute",
"meloettaAria": "Canto", "meloettaAria": "Canto",
"meloettaPirouette": "Danza", "meloettaPirouette": "Danza",
"genesectShock": "Shock Drive",
"genesectBurn": "Burn Drive",
"genesectChill": "Chill Drive",
"genesectDouse": "Douse Drive",
"froakieBattleBond": "Morfosintonia", "froakieBattleBond": "Morfosintonia",
"scatterbugMeadow": "Giardinfiore", "scatterbugMeadow": "Giardinfiore",
"scatterbugIcySnow": "Nevi perenni", "scatterbugIcySnow": "Nevi perenni",
@ -100,6 +120,10 @@
"furfrouLaReine": "Regina", "furfrouLaReine": "Regina",
"furfrouKabuki": "Kabuki", "furfrouKabuki": "Kabuki",
"furfrouPharaoh": "Faraone", "furfrouPharaoh": "Faraone",
"espurrMale": "Male",
"espurrFemale": "Female",
"honedgeShiled": "Shield",
"honedgeBlade": "Blade",
"pumpkabooSmall": "Mini", "pumpkabooSmall": "Mini",
"pumpkabooLarge": "Grande", "pumpkabooLarge": "Grande",
"pumpkabooSuper": "Maxi", "pumpkabooSuper": "Maxi",
@ -110,11 +134,34 @@
"zygarde50Pc": "Forma 50% Sciamefusione", "zygarde50Pc": "Forma 50% Sciamefusione",
"zygarde10Pc": "Forma 10% Sciamefusione", "zygarde10Pc": "Forma 10% Sciamefusione",
"zygardeComplete": "Forma perfetta", "zygardeComplete": "Forma perfetta",
"hoopaUnbound": "Unbound",
"oricorioBaile": "Flamenco", "oricorioBaile": "Flamenco",
"oricorioPompom": "Cheerdance", "oricorioPompom": "Cheerdance",
"oricorioPau": "Hula", "oricorioPau": "Hula",
"oricorioSensu": "Buyō", "oricorioSensu": "Buyō",
"rockruffOwnTempo": "Mentelocale", "rockruffOwnTempo": "Mentelocale",
"rockruffMidday": "Midday",
"rockruffMidnight": "Midnight",
"rockruffMidnight": "Dusk",
"wishiwashiSchool": "School",
"typeNullNormal": "Type: Normal",
"typeNullFighting": "Type: Fighting",
"typeNullFlying": "Type: Flying",
"typeNullPoison": "Type: Poison",
"typeNullGround": "Type: Ground",
"typeNullRock": "Type: Rock",
"typeNullBug": "Type: Bug",
"typeNullGhost": "Type: Ghost",
"typeNullSteel": "Type: Steel",
"typeNullFire": "Type: Fire",
"typeNullWater": "Type: Water",
"typeNullGrass": "Type: Grass",
"typeNullElectric": "Type: Electric",
"typeNullPsychic": "Type: Psychic",
"typeNullIce": "Type: Ice",
"typeNullDragon": "Type: Dragon",
"typeNullDark": "Type: Dark",
"typeNullFairy": "Type: Fairy",
"miniorRedMeteor": "Nucleo Rosso", "miniorRedMeteor": "Nucleo Rosso",
"miniorOrangeMeteor": "Nucleo Arancione", "miniorOrangeMeteor": "Nucleo Arancione",
"miniorYellowMeteor": "Nucleo Giallo", "miniorYellowMeteor": "Nucleo Giallo",
@ -131,25 +178,55 @@
"miniorViolet": "Violetto", "miniorViolet": "Violetto",
"mimikyuDisguised": "Mascherata", "mimikyuDisguised": "Mascherata",
"mimikyuBusted": "Smascherata", "mimikyuBusted": "Smascherata",
"necrozmaDuskMane": "Dusk Mane",
"necrozmaDawnWings": "Dawn Wings",
"necrozmaUltra": "Ultra",
"magearnaOriginal": "Colore Antico", "magearnaOriginal": "Colore Antico",
"marshadowZenith": "Zenith", "marshadowZenith": "Zenith",
"sinisteaPhony": "Contraffatta", "sinisteaPhony": "Contraffatta",
"sinisteaAntique": "Autentica", "sinisteaAntique": "Autentica",
"milceryVanillaCream": "Vanilla Cream",
"milceryRubyCream": "Ruby Cream",
"milceryMatchaCream": "Matcha Cream",
"milceryMintCream": "Mint Cream",
"milceryLemonCream": "Lemon Cream",
"milcerySaltedCream": "Salted Cream",
"milceryRubySwirl": "Ruby Swirl",
"milceryCaramelSwirl": "Caramel Swirl",
"milceryRainbowSwirl": "Rainbow Swirl",
"eiscueNoIce": "Liquefaccia", "eiscueNoIce": "Liquefaccia",
"indeedeeMale": "Maschio", "indeedeeMale": "Maschio",
"indeedeeFemale": "Femmina", "indeedeeFemale": "Femmina",
"morpekoFullBelly": "Panciapiena", "morpekoFullBelly": "Panciapiena",
"morpekoHangry": "Hangry",
"zacianHeroOfManyBattles": "Eroe di Mille Lotte", "zacianHeroOfManyBattles": "Eroe di Mille Lotte",
"zacianCrowned": "Crowned",
"zamazentaHeroOfManyBattles": "Eroe di Mille Lotte", "zamazentaHeroOfManyBattles": "Eroe di Mille Lotte",
"zamazentaCrowned": "Crowned",
"kubfuSingleStrike": "Single Strike",
"kubfuRapidStrike": "Rapid Strike",
"zarudeDada": "Papà", "zarudeDada": "Papà",
"calyrexIce": "Ice Rider",
"calyrexShadow": "Shadow Rider",
"basculinMale": "Male",
"basculinFemale": "Female",
"enamorusIncarnate": "Incarnazione", "enamorusIncarnate": "Incarnazione",
"enamorusTherian": "Therian",
"lechonkMale": "Male",
"lechonkFemale": "Female",
"tandemausFour": "Family of Four",
"tandemausThree": "Family of Three",
"squawkabillyGreenPlumage": "Piume Verdi", "squawkabillyGreenPlumage": "Piume Verdi",
"squawkabillyBluePlumage": "Piume Azzurre", "squawkabillyBluePlumage": "Piume Azzurre",
"squawkabillyYellowPlumage": "Piume Gialle", "squawkabillyYellowPlumage": "Piume Gialle",
"squawkabillyWhitePlumage": "Piume Bianche", "squawkabillyWhitePlumage": "Piume Bianche",
"finizenZero": "Zero",
"finizenZero": "Hero",
"tatsugiriCurly": "Arcuata", "tatsugiriCurly": "Arcuata",
"tatsugiriDroopy": "Adagiata", "tatsugiriDroopy": "Adagiata",
"tatsugiriStretchy": "Tesa", "tatsugiriStretchy": "Tesa",
"dunsparceTwo": "Two-Segment",
"dunsparceThree": "Three-Segment",
"gimmighoulChest": "Scrigno", "gimmighoulChest": "Scrigno",
"gimmighoulRoaming": "Ambulante", "gimmighoulRoaming": "Ambulante",
"koraidonApexBuild": "Foggia Integrale", "koraidonApexBuild": "Foggia Integrale",
@ -164,7 +241,20 @@
"miraidonGlideMode": "Assetto Planata", "miraidonGlideMode": "Assetto Planata",
"poltchageistCounterfeit": "Taroccata", "poltchageistCounterfeit": "Taroccata",
"poltchageistArtisan": "Pregiata", "poltchageistArtisan": "Pregiata",
"poltchageistUnremarkable": "Unremarkable",
"poltchageistMasterpiece": "Masterpiece",
"ogerponTealMask": "Teal Mask",
"ogerponTealMaskTera": "Teal Mask Terastallized",
"ogerponWellspringMask": "Wellspring Mask",
"ogerponWellspringMaskTera": "Wellspring Mask Terastallized",
"ogerponHearthflameMask": "Hearthflame Mask",
"ogerponHearthflameMaskTera": "Hearthflame Mask Terastallized",
"ogerponCornerstoneMask": "Cornerstone Mask",
"ogerponCornerstoneMaskTera": "Cornerstone Mask Terastallized",
"terpagosTerastal": "Terastal",
"terpagosStellar": "Stellar",
"galarDarumakaZen": "Zen",
"paldeaTaurosCombat": "Combattiva", "paldeaTaurosCombat": "Combattiva",
"paldeaTaurosBlaze": "Infuocata", "paldeaTaurosBlaze": "Infuocata",
"paldeaTaurosAqua": "Acquatica" "paldeaTaurosAqua": "Acquatica"
} }

View File

@ -40,9 +40,14 @@
"castformRainy": "あまみず", "castformRainy": "あまみず",
"castformSnowy": "ゆきぐも", "castformSnowy": "ゆきぐも",
"deoxysNormal": "ノーマル", "deoxysNormal": "ノーマル",
"deoxysAttack": "Attack",
"deoxysDefense": "Defense",
"deoxysSpeed": "Speed",
"burmyPlant": "くさき", "burmyPlant": "くさき",
"burmySandy": "すなち", "burmySandy": "すなち",
"burmyTrash": "ゴミ", "burmyTrash": "ゴミ",
"cheribiOvercast": "Overcast",
"cheribiSunshine": "Sunshine",
"shellosEast": "ひがし", "shellosEast": "ひがし",
"shellosWest": "にし", "shellosWest": "にし",
"rotomHeat": "ヒート", "rotomHeat": "ヒート",
@ -50,21 +55,36 @@
"rotomFrost": "フロスト", "rotomFrost": "フロスト",
"rotomFan": "スピン", "rotomFan": "スピン",
"rotomMow": "カット", "rotomMow": "カット",
"dialgaOrigin": "Origin",
"palkiaOrigin": "Origin",
"giratinaAltered": "アナザー", "giratinaAltered": "アナザー",
"giratinaOrigin": "Origin",
"shayminLand": "ランド", "shayminLand": "ランド",
"shayminSky": "Sky",
"basculinRedStriped": "赤筋", "basculinRedStriped": "赤筋",
"basculinBlueStriped": "青筋", "basculinBlueStriped": "青筋",
"basculinWhiteStriped": "白筋", "basculinWhiteStriped": "白筋",
"darumakaZen": "Zen",
"deerlingSpring": "春", "deerlingSpring": "春",
"deerlingSummer": "夏", "deerlingSummer": "夏",
"deerlingAutumn": "秋", "deerlingAutumn": "秋",
"deerlingWinter": "冬", "deerlingWinter": "冬",
"tornadusIncarnate": "けしん", "tornadusIncarnate": "けしん",
"tornadusTherian": "Therian",
"thundurusIncarnate": "けしん", "thundurusIncarnate": "けしん",
"thundurusTherian": "Therian",
"landorusIncarnate": "けしん", "landorusIncarnate": "けしん",
"landorusTherian": "Therian",
"kyuremBlack": "Black",
"kyuremWhite": "White",
"keldeoOrdinary": "いつも", "keldeoOrdinary": "いつも",
"keldeoResolute": "Resolute",
"meloettaAria": "ボイス", "meloettaAria": "ボイス",
"meloettaPirouette": "ステップ", "meloettaPirouette": "ステップ",
"genesectShock": "Shock Drive",
"genesectBurn": "Burn Drive",
"genesectChill": "Chill Drive",
"genesectDouse": "Douse Drive",
"froakieBattleBond": "きずなへんげ", "froakieBattleBond": "きずなへんげ",
"scatterbugMeadow": "はなぞの", "scatterbugMeadow": "はなぞの",
"scatterbugIcySnow": "ひょうせつ", "scatterbugIcySnow": "ひょうせつ",
@ -100,6 +120,10 @@
"furfrouLaReine": "クイーン", "furfrouLaReine": "クイーン",
"furfrouKabuki": "カブキ", "furfrouKabuki": "カブキ",
"furfrouPharaoh": "キングダム", "furfrouPharaoh": "キングダム",
"espurrMale": "Male",
"espurrFemale": "Female",
"honedgeShiled": "Shield",
"honedgeBlade": "Blade",
"pumpkabooSmall": "ちいさい", "pumpkabooSmall": "ちいさい",
"pumpkabooLarge": "おおきい", "pumpkabooLarge": "おおきい",
"pumpkabooSuper": "とくだい", "pumpkabooSuper": "とくだい",
@ -110,11 +134,34 @@
"zygarde50Pc": "50%フォルム スワームチェンジ", "zygarde50Pc": "50%フォルム スワームチェンジ",
"zygarde10Pc": "10%フォルム スワームチェンジ", "zygarde10Pc": "10%フォルム スワームチェンジ",
"zygardeComplete": "パーフェクトフォルム", "zygardeComplete": "パーフェクトフォルム",
"hoopaUnbound": "Unbound",
"oricorioBaile": "めらめら", "oricorioBaile": "めらめら",
"oricorioPompom": "ぱちぱち", "oricorioPompom": "ぱちぱち",
"oricorioPau": "ふらふら", "oricorioPau": "ふらふら",
"oricorioSensu": "まいまい", "oricorioSensu": "まいまい",
"rockruffOwnTempo": "マイペース", "rockruffOwnTempo": "マイペース",
"rockruffMidday": "Midday",
"rockruffMidnight": "Midnight",
"rockruffMidnight": "Dusk",
"wishiwashiSchool": "School",
"typeNullNormal": "Type: Normal",
"typeNullFighting": "Type: Fighting",
"typeNullFlying": "Type: Flying",
"typeNullPoison": "Type: Poison",
"typeNullGround": "Type: Ground",
"typeNullRock": "Type: Rock",
"typeNullBug": "Type: Bug",
"typeNullGhost": "Type: Ghost",
"typeNullSteel": "Type: Steel",
"typeNullFire": "Type: Fire",
"typeNullWater": "Type: Water",
"typeNullGrass": "Type: Grass",
"typeNullElectric": "Type: Electric",
"typeNullPsychic": "Type: Psychic",
"typeNullIce": "Type: Ice",
"typeNullDragon": "Type: Dragon",
"typeNullDark": "Type: Dark",
"typeNullFairy": "Type: Fairy",
"miniorRedMeteor": "赤 りゅうせい", "miniorRedMeteor": "赤 りゅうせい",
"miniorOrangeMeteor": "オレンジ りゅうせい", "miniorOrangeMeteor": "オレンジ りゅうせい",
"miniorYellowMeteor": "黄 りゅうせい", "miniorYellowMeteor": "黄 りゅうせい",
@ -131,22 +178,52 @@
"miniorViolet": "紫", "miniorViolet": "紫",
"mimikyuDisguised": "ばけたすがた", "mimikyuDisguised": "ばけたすがた",
"mimikyuBusted": "ばれたすがた", "mimikyuBusted": "ばれたすがた",
"necrozmaDuskMane": "Dusk Mane",
"necrozmaDawnWings": "Dawn Wings",
"necrozmaUltra": "Ultra",
"magearnaOriginal": "500ねんまえ", "magearnaOriginal": "500ねんまえ",
"marshadowZenith": "Zパワー", "marshadowZenith": "Zパワー",
"sinisteaPhony": "がんさく", "sinisteaPhony": "がんさく",
"sinisteaAntique": "しんさく", "sinisteaAntique": "しんさく",
"milceryVanillaCream": "Vanilla Cream",
"milceryRubyCream": "Ruby Cream",
"milceryMatchaCream": "Matcha Cream",
"milceryMintCream": "Mint Cream",
"milceryLemonCream": "Lemon Cream",
"milcerySaltedCream": "Salted Cream",
"milceryRubySwirl": "Ruby Swirl",
"milceryCaramelSwirl": "Caramel Swirl",
"milceryRainbowSwirl": "Rainbow Swirl",
"eiscueNoIce": "ナイスなし", "eiscueNoIce": "ナイスなし",
"indeedeeMale": "オス", "indeedeeMale": "オス",
"indeedeeFemale": "メス", "indeedeeFemale": "メス",
"morpekoFullBelly": "まんぷく", "morpekoFullBelly": "まんぷく",
"morpekoHangry": "Hangry",
"zacianHeroOfManyBattles": "れきせんのゆうしゃ", "zacianHeroOfManyBattles": "れきせんのゆうしゃ",
"zacianCrowned": "Crowned",
"zamazentaHeroOfManyBattles": "れきせんのゆうしゃ", "zamazentaHeroOfManyBattles": "れきせんのゆうしゃ",
"zamazentaCrowned": "Crowned",
"kubfuSingleStrike": "Single Strike",
"kubfuRapidStrike": "Rapid Strike",
"zarudeDada": "とうちゃん", "zarudeDada": "とうちゃん",
"calyrexIce": "Ice Rider",
"calyrexShadow": "Shadow Rider",
"basculinMale": "Male",
"basculinFemale": "Female",
"enamorusIncarnate": "けしん", "enamorusIncarnate": "けしん",
"enamorusTherian": "Therian",
"lechonkMale": "Male",
"lechonkFemale": "Female",
"tandemausFour": "Family of Four",
"tandemausThree": "Family of Three",
"squawkabillyGreenPlumage": "グリーンフェザー", "squawkabillyGreenPlumage": "グリーンフェザー",
"squawkabillyBluePlumage": "ブルーフェザー", "squawkabillyBluePlumage": "ブルーフェザー",
"squawkabillyYellowPlumage": "イエローフェザー", "squawkabillyYellowPlumage": "イエローフェザー",
"squawkabillyWhitePlumage": "ホワイトフェザー", "squawkabillyWhitePlumage": "ホワイトフェザー",
"dunsparceTwo": "Two-Segment",
"dunsparceThree": "Three-Segment",
"finizenZero": "Zero",
"finizenZero": "Hero",
"tatsugiriCurly": "そったすがた", "tatsugiriCurly": "そったすがた",
"tatsugiriDroopy": "たれたすがた", "tatsugiriDroopy": "たれたすがた",
"tatsugiriStretchy": "のびたすがた", "tatsugiriStretchy": "のびたすがた",
@ -164,7 +241,20 @@
"miraidonGlideMode":"グライドモード", "miraidonGlideMode":"グライドモード",
"poltchageistCounterfeit": "マガイモノ", "poltchageistCounterfeit": "マガイモノ",
"poltchageistArtisan": "タカイモノ", "poltchageistArtisan": "タカイモノ",
"poltchageistUnremarkable": "Unremarkable",
"poltchageistMasterpiece": "Masterpiece",
"ogerponTealMask": "Teal Mask",
"ogerponTealMaskTera": "Teal Mask Terastallized",
"ogerponWellspringMask": "Wellspring Mask",
"ogerponWellspringMaskTera": "Wellspring Mask Terastallized",
"ogerponHearthflameMask": "Hearthflame Mask",
"ogerponHearthflameMaskTera": "Hearthflame Mask Terastallized",
"ogerponCornerstoneMask": "Cornerstone Mask",
"ogerponCornerstoneMaskTera": "Cornerstone Mask Terastallized",
"terpagosTerastal": "Terastal",
"terpagosStellar": "Stellar",
"galarDarumakaZen": "Zen",
"paldeaTaurosCombat": "コンバット", "paldeaTaurosCombat": "コンバット",
"paldeaTaurosBlaze": "ブレイズ", "paldeaTaurosBlaze": "ブレイズ",
"paldeaTaurosAqua": "ウォーター" "paldeaTaurosAqua": "ウォーター"
} }

View File

@ -13,8 +13,10 @@
"ALL": "전부", "ALL": "전부",
"PASS_BATON": "배턴터치한다", "PASS_BATON": "배턴터치한다",
"UNPAUSE_EVOLUTION": "진화 재개", "UNPAUSE_EVOLUTION": "진화 재개",
"PAUSE_EVOLUTION": "진화 중지",
"REVIVE": "되살린다", "REVIVE": "되살린다",
"RENAME": "닉네임 바꾸기", "RENAME": "닉네임 바꾸기",
"SELECT": "선택한다",
"choosePokemon": "포켓몬을 선택하세요.", "choosePokemon": "포켓몬을 선택하세요.",
"doWhatWithThisPokemon": "포켓몬을 어떻게 하겠습니까?", "doWhatWithThisPokemon": "포켓몬을 어떻게 하겠습니까?",
"noEnergy": "{{pokemonName}}[[는]] 싸울 수 있는\n기력이 남아 있지 않습니다!", "noEnergy": "{{pokemonName}}[[는]] 싸울 수 있는\n기력이 남아 있지 않습니다!",
@ -23,6 +25,7 @@
"tooManyItems": "{{pokemonName}}[[는]] 지닌 도구의 수가\n너무 많습니다", "tooManyItems": "{{pokemonName}}[[는]] 지닌 도구의 수가\n너무 많습니다",
"anyEffect": "써도 효과가 없다.", "anyEffect": "써도 효과가 없다.",
"unpausedEvolutions": "{{pokemonName}}의 진화가 재개되었다.", "unpausedEvolutions": "{{pokemonName}}의 진화가 재개되었다.",
"pausedEvolutions": "{{pokemonName}}[[가]] 진화하지 않도록 했다.",
"unspliceConfirmation": "{{pokemonName}}로부터 {{fusionName}}의 융합을 해제하시겠습니까?\n{{fusionName}}는 사라지게 됩니다.", "unspliceConfirmation": "{{pokemonName}}로부터 {{fusionName}}의 융합을 해제하시겠습니까?\n{{fusionName}}는 사라지게 됩니다.",
"wasReverted": "{{fusionName}}은 {{pokemonName}}의 모습으로 돌아갔습니다!", "wasReverted": "{{fusionName}}은 {{pokemonName}}의 모습으로 돌아갔습니다!",
"releaseConfirmation": "{{pokemonName}}[[를]]\n정말 놓아주겠습니까?", "releaseConfirmation": "{{pokemonName}}[[를]]\n정말 놓아주겠습니까?",

View File

@ -40,9 +40,14 @@
"castformRainy": "빗방울의 모습", "castformRainy": "빗방울의 모습",
"castformSnowy": "설운의 모습", "castformSnowy": "설운의 모습",
"deoxysNormal": "노말폼", "deoxysNormal": "노말폼",
"deoxysAttack": "Attack",
"deoxysDefense": "Defense",
"deoxysSpeed": "Speed",
"burmyPlant": "초목도롱", "burmyPlant": "초목도롱",
"burmySandy": "모래땅도롱", "burmySandy": "모래땅도롱",
"burmyTrash": "슈레도롱", "burmyTrash": "슈레도롱",
"cheribiOvercast": "Overcast",
"cheribiSunshine": "Sunshine",
"shellosEast": "동쪽바다의 모습", "shellosEast": "동쪽바다의 모습",
"shellosWest": "서쪽바다의 모습", "shellosWest": "서쪽바다의 모습",
"rotomHeat": "히트", "rotomHeat": "히트",
@ -50,21 +55,36 @@
"rotomFrost": "프로스트", "rotomFrost": "프로스트",
"rotomFan": "스핀", "rotomFan": "스핀",
"rotomMow": "커트", "rotomMow": "커트",
"dialgaOrigin": "Origin",
"palkiaOrigin": "Origin",
"giratinaAltered": "어나더폼", "giratinaAltered": "어나더폼",
"giratinaOrigin": "Origin",
"shayminLand": "랜드폼", "shayminLand": "랜드폼",
"shayminSky": "Sky",
"basculinRedStriped": "적색근의 모습", "basculinRedStriped": "적색근의 모습",
"basculinBlueStriped": "청색근의 모습", "basculinBlueStriped": "청색근의 모습",
"basculinWhiteStriped": "백색근의 모습", "basculinWhiteStriped": "백색근의 모습",
"darumakaZen": "Zen",
"deerlingSpring": "봄의 모습", "deerlingSpring": "봄의 모습",
"deerlingSummer": "여름의 모습", "deerlingSummer": "여름의 모습",
"deerlingAutumn": "가을의 모습", "deerlingAutumn": "가을의 모습",
"deerlingWinter": "겨울의 모습", "deerlingWinter": "겨울의 모습",
"tornadusIncarnate": "화신폼", "tornadusIncarnate": "화신폼",
"tornadusTherian": "Therian",
"thundurusIncarnate": "화신폼", "thundurusIncarnate": "화신폼",
"thundurusTherian": "Therian",
"landorusIncarnate": "화신폼", "landorusIncarnate": "화신폼",
"landorusTherian": "Therian",
"kyuremBlack": "Black",
"kyuremWhite": "White",
"keldeoOrdinary": "평상시 모습", "keldeoOrdinary": "평상시 모습",
"keldeoResolute": "Resolute",
"meloettaAria": "보이스폼", "meloettaAria": "보이스폼",
"meloettaPirouette": "스텝폼", "meloettaPirouette": "스텝폼",
"genesectShock": "Shock Drive",
"genesectBurn": "Burn Drive",
"genesectChill": "Chill Drive",
"genesectDouse": "Douse Drive",
"froakieBattleBond": "유대변화", "froakieBattleBond": "유대변화",
"scatterbugMeadow": "화원의 모양", "scatterbugMeadow": "화원의 모양",
"scatterbugIcySnow": "빙설의 모양", "scatterbugIcySnow": "빙설의 모양",
@ -100,6 +120,10 @@
"furfrouLaReine": "퀸컷", "furfrouLaReine": "퀸컷",
"furfrouKabuki": "가부키컷", "furfrouKabuki": "가부키컷",
"furfrouPharaoh": "킹덤컷", "furfrouPharaoh": "킹덤컷",
"espurrMale": "Male",
"espurrFemale": "Female",
"honedgeShiled": "Shield",
"honedgeBlade": "Blade",
"pumpkabooSmall": "작은 사이즈", "pumpkabooSmall": "작은 사이즈",
"pumpkabooLarge": "큰 사이즈", "pumpkabooLarge": "큰 사이즈",
"pumpkabooSuper": "특대 사이즈", "pumpkabooSuper": "특대 사이즈",
@ -110,11 +134,34 @@
"zygarde50Pc": "스웜체인지 50%폼", "zygarde50Pc": "스웜체인지 50%폼",
"zygarde10Pc": "스웜체인지 10%폼", "zygarde10Pc": "스웜체인지 10%폼",
"zygardeComplete": "퍼펙트폼", "zygardeComplete": "퍼펙트폼",
"hoopaUnbound": "Unbound",
"oricorioBaile": "이글이글스타일", "oricorioBaile": "이글이글스타일",
"oricorioPompom": "파칙파칙스타일", "oricorioPompom": "파칙파칙스타일",
"oricorioPau": "훌라훌라스타일", "oricorioPau": "훌라훌라스타일",
"oricorioSensu": "하늘하늘스타일", "oricorioSensu": "하늘하늘스타일",
"rockruffOwnTempo": "마이페이스", "rockruffOwnTempo": "마이페이스",
"rockruffMidday": "Midday",
"rockruffMidnight": "Midnight",
"rockruffMidnight": "Dusk",
"wishiwashiSchool": "School",
"typeNullNormal": "Type: Normal",
"typeNullFighting": "Type: Fighting",
"typeNullFlying": "Type: Flying",
"typeNullPoison": "Type: Poison",
"typeNullGround": "Type: Ground",
"typeNullRock": "Type: Rock",
"typeNullBug": "Type: Bug",
"typeNullGhost": "Type: Ghost",
"typeNullSteel": "Type: Steel",
"typeNullFire": "Type: Fire",
"typeNullWater": "Type: Water",
"typeNullGrass": "Type: Grass",
"typeNullElectric": "Type: Electric",
"typeNullPsychic": "Type: Psychic",
"typeNullIce": "Type: Ice",
"typeNullDragon": "Type: Dragon",
"typeNullDark": "Type: Dark",
"typeNullFairy": "Type: Fairy",
"miniorRedMeteor": "유성의 모습(빨강)", "miniorRedMeteor": "유성의 모습(빨강)",
"miniorOrangeMeteor": "유성의 모습(주황)", "miniorOrangeMeteor": "유성의 모습(주황)",
"miniorYellowMeteor": "유성의 모습(노랑)", "miniorYellowMeteor": "유성의 모습(노랑)",
@ -131,25 +178,55 @@
"miniorViolet": "보라색 코어", "miniorViolet": "보라색 코어",
"mimikyuDisguised": "둔갑한 모습", "mimikyuDisguised": "둔갑한 모습",
"mimikyuBusted": "들킨 모습", "mimikyuBusted": "들킨 모습",
"necrozmaDuskMane": "Dusk Mane",
"necrozmaDawnWings": "Dawn Wings",
"necrozmaUltra": "Ultra",
"magearnaOriginal": "500년 전의 색", "magearnaOriginal": "500년 전의 색",
"marshadowZenith": "투지를 불태운 마샤도", "marshadowZenith": "투지를 불태운 마샤도",
"sinisteaPhony": "위작품", "sinisteaPhony": "위작품",
"sinisteaAntique": "진작품", "sinisteaAntique": "진작품",
"milceryVanillaCream": "Vanilla Cream",
"milceryRubyCream": "Ruby Cream",
"milceryMatchaCream": "Matcha Cream",
"milceryMintCream": "Mint Cream",
"milceryLemonCream": "Lemon Cream",
"milcerySaltedCream": "Salted Cream",
"milceryRubySwirl": "Ruby Swirl",
"milceryCaramelSwirl": "Caramel Swirl",
"milceryRainbowSwirl": "Rainbow Swirl",
"eiscueNoIce": "나이스페이스", "eiscueNoIce": "나이스페이스",
"indeedeeMale": "수컷의 모습", "indeedeeMale": "수컷의 모습",
"indeedeeFemale": "암컷의 모습", "indeedeeFemale": "암컷의 모습",
"morpekoFullBelly": "배부른 모양", "morpekoFullBelly": "배부른 모양",
"morpekoHangry": "Hangry",
"zacianHeroOfManyBattles": "역전의 용사", "zacianHeroOfManyBattles": "역전의 용사",
"zacianCrowned": "Crowned",
"zamazentaHeroOfManyBattles": "역전의 용사", "zamazentaHeroOfManyBattles": "역전의 용사",
"zamazentaCrowned": "Crowned",
"kubfuSingleStrike": "Single Strike",
"kubfuRapidStrike": "Rapid Strike",
"zarudeDada": "아빠", "zarudeDada": "아빠",
"calyrexIce": "Ice Rider",
"calyrexShadow": "Shadow Rider",
"basculinMale": "Male",
"basculinFemale": "Female",
"enamorusIncarnate": "화신폼", "enamorusIncarnate": "화신폼",
"enamorusTherian": "Therian",
"lechonkMale": "Male",
"lechonkFemale": "Female",
"tandemausFour": "Family of Four",
"tandemausThree": "Family of Three",
"squawkabillyGreenPlumage": "그린 페더", "squawkabillyGreenPlumage": "그린 페더",
"squawkabillyBluePlumage": "블루 페더", "squawkabillyBluePlumage": "블루 페더",
"squawkabillyYellowPlumage": "옐로 페더", "squawkabillyYellowPlumage": "옐로 페더",
"squawkabillyWhitePlumage": "화이트 페더", "squawkabillyWhitePlumage": "화이트 페더",
"finizenZero": "Zero",
"finizenZero": "Hero",
"tatsugiriCurly": "젖힌 모습", "tatsugiriCurly": "젖힌 모습",
"tatsugiriDroopy": "늘어진 모습", "tatsugiriDroopy": "늘어진 모습",
"tatsugiriStretchy": "뻗은 모습", "tatsugiriStretchy": "뻗은 모습",
"dunsparceTwo": "Two-Segment",
"dunsparceThree": "Three-Segment",
"gimmighoulChest": "상자폼", "gimmighoulChest": "상자폼",
"gimmighoulRoaming": "도보폼", "gimmighoulRoaming": "도보폼",
"koraidonApexBuild": "완전형태", "koraidonApexBuild": "완전형태",
@ -164,7 +241,20 @@
"miraidonGlideMode": "글라이드모드", "miraidonGlideMode": "글라이드모드",
"poltchageistCounterfeit": "가짜배기의 모습", "poltchageistCounterfeit": "가짜배기의 모습",
"poltchageistArtisan": "알짜배기의 모습", "poltchageistArtisan": "알짜배기의 모습",
"poltchageistUnremarkable": "Unremarkable",
"poltchageistMasterpiece": "Masterpiece",
"ogerponTealMask": "Teal Mask",
"ogerponTealMaskTera": "Teal Mask Terastallized",
"ogerponWellspringMask": "Wellspring Mask",
"ogerponWellspringMaskTera": "Wellspring Mask Terastallized",
"ogerponHearthflameMask": "Hearthflame Mask",
"ogerponHearthflameMaskTera": "Hearthflame Mask Terastallized",
"ogerponCornerstoneMask": "Cornerstone Mask",
"ogerponCornerstoneMaskTera": "Cornerstone Mask Terastallized",
"terpagosTerastal": "Terastal",
"terpagosStellar": "Stellar",
"galarDarumakaZen": "Zen",
"paldeaTaurosCombat": "컴뱃종", "paldeaTaurosCombat": "컴뱃종",
"paldeaTaurosBlaze": "블레이즈종", "paldeaTaurosBlaze": "블레이즈종",
"paldeaTaurosAqua": "워터종" "paldeaTaurosAqua": "워터종"
} }

View File

@ -11,6 +11,10 @@
"expGainsSpeed": "경험치 획득 속도", "expGainsSpeed": "경험치 획득 속도",
"expPartyDisplay": "파티 경험치 표시", "expPartyDisplay": "파티 경험치 표시",
"skipSeenDialogues": "본 대화 생략", "skipSeenDialogues": "본 대화 생략",
"eggSkip": "알 스킵",
"never": "안 함",
"always": "항상",
"ask": "확인하기",
"battleStyle": "시합 룰", "battleStyle": "시합 룰",
"enableRetries": "재도전 허용", "enableRetries": "재도전 허용",
"hideIvs": "개체값탐지기 효과 끄기", "hideIvs": "개체값탐지기 효과 끄기",

View File

@ -40,9 +40,14 @@
"castformRainy": "Chuvoso", "castformRainy": "Chuvoso",
"castformSnowy": "Nevado", "castformSnowy": "Nevado",
"deoxysNormal": "Normal", "deoxysNormal": "Normal",
"deoxysAttack": "Attack",
"deoxysDefense": "Defense",
"deoxysSpeed": "Speed",
"burmyPlant": "Vegetal", "burmyPlant": "Vegetal",
"burmySandy": "Arenoso", "burmySandy": "Arenoso",
"burmyTrash": "Lixo", "burmyTrash": "Lixo",
"cheribiOvercast": "Overcast",
"cheribiSunshine": "Sunshine",
"shellosEast": "Leste", "shellosEast": "Leste",
"shellosWest": "Oeste", "shellosWest": "Oeste",
"rotomHeat": "Calor", "rotomHeat": "Calor",
@ -50,21 +55,36 @@
"rotomFrost": "Congelante", "rotomFrost": "Congelante",
"rotomFan": "Ventilador", "rotomFan": "Ventilador",
"rotomMow": "Corte", "rotomMow": "Corte",
"dialgaOrigin": "Origin",
"palkiaOrigin": "Origin",
"giratinaAltered": "Alterado", "giratinaAltered": "Alterado",
"giratinaOrigin": "Origin",
"shayminLand": "Terrestre", "shayminLand": "Terrestre",
"shayminSky": "Sky",
"basculinRedStriped": "Listras Vermelhas", "basculinRedStriped": "Listras Vermelhas",
"basculinBlueStriped": "Listras Azuis", "basculinBlueStriped": "Listras Azuis",
"basculinWhiteStriped": "Listras Brancas", "basculinWhiteStriped": "Listras Brancas",
"darumakaZen": "Zen",
"deerlingSpring": "Primavera", "deerlingSpring": "Primavera",
"deerlingSummer": "Verão", "deerlingSummer": "Verão",
"deerlingAutumn": "Outono", "deerlingAutumn": "Outono",
"deerlingWinter": "Inverno", "deerlingWinter": "Inverno",
"tornadusIncarnate": "Materializado", "tornadusIncarnate": "Materializado",
"tornadusTherian": "Therian",
"thundurusIncarnate": "Materializado", "thundurusIncarnate": "Materializado",
"thundurusTherian": "Therian",
"landorusIncarnate": "Materializado", "landorusIncarnate": "Materializado",
"landorusTherian": "Therian",
"kyuremBlack": "Black",
"kyuremWhite": "White",
"keldeoOrdinary": "Comum", "keldeoOrdinary": "Comum",
"keldeoResolute": "Resolute",
"meloettaAria": "Ária", "meloettaAria": "Ária",
"meloettaPirouette": "Pirueta", "meloettaPirouette": "Pirueta",
"genesectShock": "Shock Drive",
"genesectBurn": "Burn Drive",
"genesectChill": "Chill Drive",
"genesectDouse": "Douse Drive",
"froakieBattleBond": "Vínculo de Batalha", "froakieBattleBond": "Vínculo de Batalha",
"scatterbugMeadow": "Prado", "scatterbugMeadow": "Prado",
"scatterbugIcySnow": "Neve Congelada", "scatterbugIcySnow": "Neve Congelada",
@ -100,6 +120,10 @@
"furfrouLaReine": "Aristocrático", "furfrouLaReine": "Aristocrático",
"furfrouKabuki": "Kabuki", "furfrouKabuki": "Kabuki",
"furfrouPharaoh": "Faraó", "furfrouPharaoh": "Faraó",
"espurrMale": "Male",
"espurrFemale": "Female",
"honedgeShiled": "Shield",
"honedgeBlade": "Blade",
"pumpkabooSmall": "Pequeno", "pumpkabooSmall": "Pequeno",
"pumpkabooLarge": "Grande", "pumpkabooLarge": "Grande",
"pumpkabooSuper": "Extragrande", "pumpkabooSuper": "Extragrande",
@ -110,11 +134,34 @@
"zygarde50Pc": "Forma 50% Agrupada", "zygarde50Pc": "Forma 50% Agrupada",
"zygarde10Pc": "Forma 10% Agrupada", "zygarde10Pc": "Forma 10% Agrupada",
"zygardeComplete": "Forma Completa", "zygardeComplete": "Forma Completa",
"hoopaUnbound": "Unbound",
"oricorioBaile": "Flamenco", "oricorioBaile": "Flamenco",
"oricorioPompom": "Pompom", "oricorioPompom": "Pompom",
"oricorioPau": "Hula", "oricorioPau": "Hula",
"oricorioSensu": "Leque", "oricorioSensu": "Leque",
"rockruffOwnTempo": "Próprio Tempo", "rockruffOwnTempo": "Próprio Tempo",
"rockruffMidday": "Midday",
"rockruffMidnight": "Midnight",
"rockruffMidnight": "Dusk",
"wishiwashiSchool": "School",
"typeNullNormal": "Type: Normal",
"typeNullFighting": "Type: Fighting",
"typeNullFlying": "Type: Flying",
"typeNullPoison": "Type: Poison",
"typeNullGround": "Type: Ground",
"typeNullRock": "Type: Rock",
"typeNullBug": "Type: Bug",
"typeNullGhost": "Type: Ghost",
"typeNullSteel": "Type: Steel",
"typeNullFire": "Type: Fire",
"typeNullWater": "Type: Water",
"typeNullGrass": "Type: Grass",
"typeNullElectric": "Type: Electric",
"typeNullPsychic": "Type: Psychic",
"typeNullIce": "Type: Ice",
"typeNullDragon": "Type: Dragon",
"typeNullDark": "Type: Dark",
"typeNullFairy": "Type: Fairy",
"miniorRedMeteor": "Meteoro Vermelho", "miniorRedMeteor": "Meteoro Vermelho",
"miniorOrangeMeteor": "Meteoro Laranja", "miniorOrangeMeteor": "Meteoro Laranja",
"miniorYellowMeteor": "Meteoro Amarelo", "miniorYellowMeteor": "Meteoro Amarelo",
@ -131,25 +178,55 @@
"miniorViolet": "Violeta", "miniorViolet": "Violeta",
"mimikyuDisguised": "Disfarçado", "mimikyuDisguised": "Disfarçado",
"mimikyuBusted": "Descoberto", "mimikyuBusted": "Descoberto",
"necrozmaDuskMane": "Dusk Mane",
"necrozmaDawnWings": "Dawn Wings",
"necrozmaUltra": "Ultra",
"magearnaOriginal": "Original", "magearnaOriginal": "Original",
"marshadowZenith": "Zênite", "marshadowZenith": "Zênite",
"sinisteaPhony": "Falsificado", "sinisteaPhony": "Falsificado",
"sinisteaAntique": "Autêntico", "sinisteaAntique": "Autêntico",
"milceryVanillaCream": "Vanilla Cream",
"milceryRubyCream": "Ruby Cream",
"milceryMatchaCream": "Matcha Cream",
"milceryMintCream": "Mint Cream",
"milceryLemonCream": "Lemon Cream",
"milcerySaltedCream": "Salted Cream",
"milceryRubySwirl": "Ruby Swirl",
"milceryCaramelSwirl": "Caramel Swirl",
"milceryRainbowSwirl": "Rainbow Swirl",
"eiscueNoIce": "Descongelado", "eiscueNoIce": "Descongelado",
"indeedeeMale": "Macho", "indeedeeMale": "Macho",
"indeedeeFemale": "Fêmea", "indeedeeFemale": "Fêmea",
"morpekoFullBelly": "Saciado", "morpekoFullBelly": "Saciado",
"morpekoHangry": "Hangry",
"zacianHeroOfManyBattles": "Herói Veterano", "zacianHeroOfManyBattles": "Herói Veterano",
"zacianCrowned": "Crowned",
"zamazentaHeroOfManyBattles": "Herói Veterano", "zamazentaHeroOfManyBattles": "Herói Veterano",
"zamazentaCrowned": "Crowned",
"kubfuSingleStrike": "Single Strike",
"kubfuRapidStrike": "Rapid Strike",
"zarudeDada": "Papa", "zarudeDada": "Papa",
"calyrexIce": "Ice Rider",
"calyrexShadow": "Shadow Rider",
"basculinMale": "Male",
"basculinFemale": "Female",
"enamorusIncarnate": "Materializado", "enamorusIncarnate": "Materializado",
"enamorusTherian": "Therian",
"lechonkMale": "Male",
"lechonkFemale": "Female",
"tandemausFour": "Family of Four",
"tandemausThree": "Family of Three",
"squawkabillyGreenPlumage": "Plumas Verdes", "squawkabillyGreenPlumage": "Plumas Verdes",
"squawkabillyBluePlumage": "Plumas Azuis", "squawkabillyBluePlumage": "Plumas Azuis",
"squawkabillyYellowPlumage": "Plumas Amarelas", "squawkabillyYellowPlumage": "Plumas Amarelas",
"squawkabillyWhitePlumage": "Plumas Brancas", "squawkabillyWhitePlumage": "Plumas Brancas",
"finizenZero": "Zero",
"finizenZero": "Hero",
"tatsugiriCurly": "Curvado", "tatsugiriCurly": "Curvado",
"tatsugiriDroopy": "Caído", "tatsugiriDroopy": "Caído",
"tatsugiriStretchy": "Reto", "tatsugiriStretchy": "Reto",
"dunsparceTwo": "Two-Segment",
"dunsparceThree": "Three-Segment",
"gimmighoulChest": "Baú", "gimmighoulChest": "Baú",
"gimmighoulRoaming": "Perambulante", "gimmighoulRoaming": "Perambulante",
"koraidonApexBuild": "Forma Plena", "koraidonApexBuild": "Forma Plena",
@ -164,6 +241,19 @@
"miraidonGlideMode": "Modo Aéreo", "miraidonGlideMode": "Modo Aéreo",
"poltchageistCounterfeit": "Imitação", "poltchageistCounterfeit": "Imitação",
"poltchageistArtisan": "Artesão", "poltchageistArtisan": "Artesão",
"poltchageistUnremarkable": "Unremarkable",
"poltchageistMasterpiece": "Masterpiece",
"ogerponTealMask": "Teal Mask",
"ogerponTealMaskTera": "Teal Mask Terastallized",
"ogerponWellspringMask": "Wellspring Mask",
"ogerponWellspringMaskTera": "Wellspring Mask Terastallized",
"ogerponHearthflameMask": "Hearthflame Mask",
"ogerponHearthflameMaskTera": "Hearthflame Mask Terastallized",
"ogerponCornerstoneMask": "Cornerstone Mask",
"ogerponCornerstoneMaskTera": "Cornerstone Mask Terastallized",
"terpagosTerastal": "Terastal",
"terpagosStellar": "Stellar",
"galarDarumakaZen": "Zen",
"paldeaTaurosCombat": "Combate", "paldeaTaurosCombat": "Combate",
"paldeaTaurosBlaze": "Chamas", "paldeaTaurosBlaze": "Chamas",
"paldeaTaurosAqua": "Aquático" "paldeaTaurosAqua": "Aquático"

View File

@ -40,9 +40,14 @@
"castformRainy": "雨天", "castformRainy": "雨天",
"castformSnowy": "雪天", "castformSnowy": "雪天",
"deoxysNormal": "普通", "deoxysNormal": "普通",
"deoxysAttack": "Attack",
"deoxysDefense": "Defense",
"deoxysSpeed": "Speed",
"burmyPlant": "草木蓑衣", "burmyPlant": "草木蓑衣",
"burmySandy": "砂土蓑衣", "burmySandy": "砂土蓑衣",
"burmyTrash": "垃圾蓑衣", "burmyTrash": "垃圾蓑衣",
"cheribiOvercast": "Overcast",
"cheribiSunshine": "Sunshine",
"shellosEast": "东海", "shellosEast": "东海",
"shellosWest": "西海", "shellosWest": "西海",
"rotomHeat": "加热", "rotomHeat": "加热",
@ -50,21 +55,36 @@
"rotomFrost": "结冰", "rotomFrost": "结冰",
"rotomFan": "旋转", "rotomFan": "旋转",
"rotomMow": "切割", "rotomMow": "切割",
"dialgaOrigin": "Origin",
"palkiaOrigin": "Origin",
"giratinaAltered": "别种", "giratinaAltered": "别种",
"giratinaOrigin": "Origin",
"shayminLand": "陆上", "shayminLand": "陆上",
"shayminSky": "Sky",
"basculinRedStriped": "红条纹", "basculinRedStriped": "红条纹",
"basculinBlueStriped": "蓝条纹", "basculinBlueStriped": "蓝条纹",
"basculinWhiteStriped": "白条纹", "basculinWhiteStriped": "白条纹",
"darumakaZen": "Zen",
"deerlingSpring": "春天", "deerlingSpring": "春天",
"deerlingSummer": "夏天", "deerlingSummer": "夏天",
"deerlingAutumn": "秋天", "deerlingAutumn": "秋天",
"deerlingWinter": "冬天", "deerlingWinter": "冬天",
"tornadusIncarnate": "化身", "tornadusIncarnate": "化身",
"tornadusTherian": "Therian",
"thundurusIncarnate": "化身", "thundurusIncarnate": "化身",
"thundurusTherian": "Therian",
"landorusIncarnate": "化身", "landorusIncarnate": "化身",
"landorusTherian": "Therian",
"kyuremBlack": "Black",
"kyuremWhite": "White",
"keldeoOrdinary": "通常", "keldeoOrdinary": "通常",
"keldeoResolute": "Resolute",
"meloettaAria": "歌声", "meloettaAria": "歌声",
"meloettaPirouette": "舞步形态", "meloettaPirouette": "舞步形态",
"genesectShock": "Shock Drive",
"genesectBurn": "Burn Drive",
"genesectChill": "Chill Drive",
"genesectDouse": "Douse Drive",
"froakieBattleBond": "牵绊变身", "froakieBattleBond": "牵绊变身",
"scatterbugMeadow": "花园花纹", "scatterbugMeadow": "花园花纹",
"scatterbugIcySnow": "冰雪花纹", "scatterbugIcySnow": "冰雪花纹",
@ -100,6 +120,10 @@
"furfrouLaReine": "女王造型", "furfrouLaReine": "女王造型",
"furfrouKabuki": "歌舞伎造型", "furfrouKabuki": "歌舞伎造型",
"furfrouPharaoh": "国王造型", "furfrouPharaoh": "国王造型",
"espurrMale": "Male",
"espurrFemale": "Female",
"honedgeShiled": "Shield",
"honedgeBlade": "Blade",
"pumpkabooSmall": "小尺寸", "pumpkabooSmall": "小尺寸",
"pumpkabooLarge": "大尺寸", "pumpkabooLarge": "大尺寸",
"pumpkabooSuper": "特大尺寸", "pumpkabooSuper": "特大尺寸",
@ -110,11 +134,34 @@
"zygarde50Pc": "50%形态 群聚变形", "zygarde50Pc": "50%形态 群聚变形",
"zygarde10Pc": "10%形态 群聚变形", "zygarde10Pc": "10%形态 群聚变形",
"zygardeComplete": "完全体形态", "zygardeComplete": "完全体形态",
"hoopaUnbound": "Unbound",
"oricorioBaile": "热辣热辣风格", "oricorioBaile": "热辣热辣风格",
"oricorioPompom": "啪滋啪滋风格", "oricorioPompom": "啪滋啪滋风格",
"oricorioPau": "呼拉呼拉风格", "oricorioPau": "呼拉呼拉风格",
"oricorioSensu": "轻盈轻盈风格", "oricorioSensu": "轻盈轻盈风格",
"rockruffOwnTempo": "特殊岩狗狗", "rockruffOwnTempo": "特殊岩狗狗",
"rockruffMidday": "Midday",
"rockruffMidnight": "Midnight",
"rockruffMidnight": "Dusk",
"wishiwashiSchool": "School",
"typeNullNormal": "Type: Normal",
"typeNullFighting": "Type: Fighting",
"typeNullFlying": "Type: Flying",
"typeNullPoison": "Type: Poison",
"typeNullGround": "Type: Ground",
"typeNullRock": "Type: Rock",
"typeNullBug": "Type: Bug",
"typeNullGhost": "Type: Ghost",
"typeNullSteel": "Type: Steel",
"typeNullFire": "Type: Fire",
"typeNullWater": "Type: Water",
"typeNullGrass": "Type: Grass",
"typeNullElectric": "Type: Electric",
"typeNullPsychic": "Type: Psychic",
"typeNullIce": "Type: Ice",
"typeNullDragon": "Type: Dragon",
"typeNullDark": "Type: Dark",
"typeNullFairy": "Type: Fairy",
"miniorRedMeteor": "红色核心", "miniorRedMeteor": "红色核心",
"miniorOrangeMeteor": "橙色核心", "miniorOrangeMeteor": "橙色核心",
"miniorYellowMeteor": "黄色核心", "miniorYellowMeteor": "黄色核心",
@ -131,25 +178,55 @@
"miniorViolet": "紫色", "miniorViolet": "紫色",
"mimikyuDisguised": "化形", "mimikyuDisguised": "化形",
"mimikyuBusted": "现形", "mimikyuBusted": "现形",
"necrozmaDuskMane": "Dusk Mane",
"necrozmaDawnWings": "Dawn Wings",
"necrozmaUltra": "Ultra",
"magearnaOriginal": "500年前的颜色", "magearnaOriginal": "500年前的颜色",
"marshadowZenith": "全力", "marshadowZenith": "全力",
"sinisteaPhony": "赝品", "sinisteaPhony": "赝品",
"sinisteaAntique": "真品", "sinisteaAntique": "真品",
"milceryVanillaCream": "Vanilla Cream",
"milceryRubyCream": "Ruby Cream",
"milceryMatchaCream": "Matcha Cream",
"milceryMintCream": "Mint Cream",
"milceryLemonCream": "Lemon Cream",
"milcerySaltedCream": "Salted Cream",
"milceryRubySwirl": "Ruby Swirl",
"milceryCaramelSwirl": "Caramel Swirl",
"milceryRainbowSwirl": "Rainbow Swirl",
"eiscueNoIce": "解冻头", "eiscueNoIce": "解冻头",
"indeedeeMale": "雄性", "indeedeeMale": "雄性",
"indeedeeFemale": "雌性", "indeedeeFemale": "雌性",
"morpekoFullBelly": "满腹花纹", "morpekoFullBelly": "满腹花纹",
"morpekoHangry": "Hangry",
"zacianHeroOfManyBattles": "百战勇者", "zacianHeroOfManyBattles": "百战勇者",
"zacianCrowned": "Crowned",
"zamazentaHeroOfManyBattles": "百战勇者", "zamazentaHeroOfManyBattles": "百战勇者",
"zamazentaCrowned": "Crowned",
"kubfuSingleStrike": "Single Strike",
"kubfuRapidStrike": "Rapid Strike",
"zarudeDada": "老爹", "zarudeDada": "老爹",
"calyrexIce": "Ice Rider",
"calyrexShadow": "Shadow Rider",
"basculinMale": "Male",
"basculinFemale": "Female",
"enamorusIncarnate": "化身", "enamorusIncarnate": "化身",
"enamorusTherian": "Therian",
"lechonkMale": "Male",
"lechonkFemale": "Female",
"tandemausFour": "Family of Four",
"tandemausThree": "Family of Three",
"squawkabillyGreenPlumage": "绿羽毛", "squawkabillyGreenPlumage": "绿羽毛",
"squawkabillyBluePlumage": "蓝羽毛", "squawkabillyBluePlumage": "蓝羽毛",
"squawkabillyYellowPlumage": "黄羽毛", "squawkabillyYellowPlumage": "黄羽毛",
"squawkabillyWhitePlumage": "白羽毛", "squawkabillyWhitePlumage": "白羽毛",
"finizenZero": "Zero",
"finizenZero": "Hero",
"tatsugiriCurly": "上弓姿势", "tatsugiriCurly": "上弓姿势",
"tatsugiriDroopy": "下垂姿势", "tatsugiriDroopy": "下垂姿势",
"tatsugiriStretchy": "平挺姿势", "tatsugiriStretchy": "平挺姿势",
"dunsparceTwo": "Two-Segment",
"dunsparceThree": "Three-Segment",
"gimmighoulChest": "宝箱形态", "gimmighoulChest": "宝箱形态",
"gimmighoulRoaming": "徒步形态", "gimmighoulRoaming": "徒步形态",
"koraidonApexBuild": "顶尖形态", "koraidonApexBuild": "顶尖形态",
@ -164,6 +241,19 @@
"miraidonGlideMode": "滑翔模式", "miraidonGlideMode": "滑翔模式",
"poltchageistCounterfeit": "冒牌货", "poltchageistCounterfeit": "冒牌货",
"poltchageistArtisan": "高档货", "poltchageistArtisan": "高档货",
"poltchageistUnremarkable": "Unremarkable",
"poltchageistMasterpiece": "Masterpiece",
"ogerponTealMask": "Teal Mask",
"ogerponTealMaskTera": "Teal Mask Terastallized",
"ogerponWellspringMask": "Wellspring Mask",
"ogerponWellspringMaskTera": "Wellspring Mask Terastallized",
"ogerponHearthflameMask": "Hearthflame Mask",
"ogerponHearthflameMaskTera": "Hearthflame Mask Terastallized",
"ogerponCornerstoneMask": "Cornerstone Mask",
"ogerponCornerstoneMaskTera": "Cornerstone Mask Terastallized",
"terpagosTerastal": "Terastal",
"terpagosStellar": "Stellar",
"galarDarumakaZen": "Zen",
"paldeaTaurosCombat": "斗战种", "paldeaTaurosCombat": "斗战种",
"paldeaTaurosBlaze": "火炽种", "paldeaTaurosBlaze": "火炽种",
"paldeaTaurosAqua": "水澜种" "paldeaTaurosAqua": "水澜种"

View File

@ -40,9 +40,14 @@
"castformRainy": "雨天", "castformRainy": "雨天",
"castformSnowy": "雪天", "castformSnowy": "雪天",
"deoxysNormal": "普通", "deoxysNormal": "普通",
"deoxysAttack": "Attack",
"deoxysDefense": "Defense",
"deoxysSpeed": "Speed",
"burmyPlant": "草木蓑衣", "burmyPlant": "草木蓑衣",
"burmySandy": "砂土蓑衣", "burmySandy": "砂土蓑衣",
"burmyTrash": "垃圾蓑衣", "burmyTrash": "垃圾蓑衣",
"cheribiOvercast": "Overcast",
"cheribiSunshine": "Sunshine",
"shellosEast": "東海", "shellosEast": "東海",
"shellosWest": "西海", "shellosWest": "西海",
"rotomHeat": "加熱", "rotomHeat": "加熱",
@ -50,21 +55,36 @@
"rotomFrost": "結冰", "rotomFrost": "結冰",
"rotomFan": "旋轉", "rotomFan": "旋轉",
"rotomMow": "切割", "rotomMow": "切割",
"dialgaOrigin": "Origin",
"palkiaOrigin": "Origin",
"giratinaAltered": "別種", "giratinaAltered": "別種",
"giratinaOrigin": "Origin",
"shayminLand": "陸上", "shayminLand": "陸上",
"shayminSky": "Sky",
"basculinRedStriped": "紅條紋", "basculinRedStriped": "紅條紋",
"basculinBlueStriped": "藍條紋", "basculinBlueStriped": "藍條紋",
"basculinWhiteStriped": "白條紋", "basculinWhiteStriped": "白條紋",
"darumakaZen": "Zen",
"deerlingSpring": "春天", "deerlingSpring": "春天",
"deerlingSummer": "夏天", "deerlingSummer": "夏天",
"deerlingAutumn": "秋天", "deerlingAutumn": "秋天",
"deerlingWinter": "冬天", "deerlingWinter": "冬天",
"tornadusIncarnate": "化身", "tornadusIncarnate": "化身",
"tornadusTherian": "Therian",
"thundurusIncarnate": "化身", "thundurusIncarnate": "化身",
"thundurusTherian": "Therian",
"landorusIncarnate": "化身", "landorusIncarnate": "化身",
"landorusTherian": "Therian",
"kyuremBlack": "Black",
"kyuremWhite": "White",
"keldeoOrdinary": "通常", "keldeoOrdinary": "通常",
"keldeoResolute": "Resolute",
"meloettaAria": "歌聲", "meloettaAria": "歌聲",
"meloettaPirouette": "舞步形態", "meloettaPirouette": "舞步形態",
"genesectShock": "Shock Drive",
"genesectBurn": "Burn Drive",
"genesectChill": "Chill Drive",
"genesectDouse": "Douse Drive",
"froakieBattleBond": "牽絆變身", "froakieBattleBond": "牽絆變身",
"scatterbugMeadow": "花園花紋", "scatterbugMeadow": "花園花紋",
"scatterbugIcySnow": "冰雪花紋", "scatterbugIcySnow": "冰雪花紋",
@ -100,6 +120,10 @@
"furfrouLaReine": "女王造型", "furfrouLaReine": "女王造型",
"furfrouKabuki": "歌舞伎造型", "furfrouKabuki": "歌舞伎造型",
"furfrouPharaoh": "國王造型", "furfrouPharaoh": "國王造型",
"espurrMale": "Male",
"espurrFemale": "Female",
"honedgeShiled": "Shield",
"honedgeBlade": "Blade",
"pumpkabooSmall": "小尺寸", "pumpkabooSmall": "小尺寸",
"pumpkabooLarge": "大尺寸", "pumpkabooLarge": "大尺寸",
"pumpkabooSuper": "特大尺寸", "pumpkabooSuper": "特大尺寸",
@ -110,11 +134,34 @@
"zygarde50Pc": "50%形態 群聚變形", "zygarde50Pc": "50%形態 群聚變形",
"zygarde10Pc": "10%形態 群聚變形", "zygarde10Pc": "10%形態 群聚變形",
"zygardeComplete": "完全體形態", "zygardeComplete": "完全體形態",
"hoopaUnbound": "Unbound",
"oricorioBaile": "熱辣熱辣風格", "oricorioBaile": "熱辣熱辣風格",
"oricorioPompom": "啪滋啪滋風格", "oricorioPompom": "啪滋啪滋風格",
"oricorioPau": "呼拉呼拉風格", "oricorioPau": "呼拉呼拉風格",
"oricorioSensu": "輕盈輕盈風格", "oricorioSensu": "輕盈輕盈風格",
"rockruffOwnTempo": "特殊岩狗狗", "rockruffOwnTempo": "特殊岩狗狗",
"rockruffMidday": "Midday",
"rockruffMidnight": "Midnight",
"rockruffMidnight": "Dusk",
"wishiwashiSchool": "School",
"typeNullNormal": "Type: Normal",
"typeNullFighting": "Type: Fighting",
"typeNullFlying": "Type: Flying",
"typeNullPoison": "Type: Poison",
"typeNullGround": "Type: Ground",
"typeNullRock": "Type: Rock",
"typeNullBug": "Type: Bug",
"typeNullGhost": "Type: Ghost",
"typeNullSteel": "Type: Steel",
"typeNullFire": "Type: Fire",
"typeNullWater": "Type: Water",
"typeNullGrass": "Type: Grass",
"typeNullElectric": "Type: Electric",
"typeNullPsychic": "Type: Psychic",
"typeNullIce": "Type: Ice",
"typeNullDragon": "Type: Dragon",
"typeNullDark": "Type: Dark",
"typeNullFairy": "Type: Fairy",
"miniorRedMeteor": "紅色核心", "miniorRedMeteor": "紅色核心",
"miniorOrangeMeteor": "橙色核心", "miniorOrangeMeteor": "橙色核心",
"miniorYellowMeteor": "黃色核心", "miniorYellowMeteor": "黃色核心",
@ -131,25 +178,55 @@
"miniorViolet": "紫色", "miniorViolet": "紫色",
"mimikyuDisguised": "化形", "mimikyuDisguised": "化形",
"mimikyuBusted": "現形", "mimikyuBusted": "現形",
"necrozmaDuskMane": "Dusk Mane",
"necrozmaDawnWings": "Dawn Wings",
"necrozmaUltra": "Ultra",
"magearnaOriginal": "500年前的顔色", "magearnaOriginal": "500年前的顔色",
"marshadowZenith": "全力", "marshadowZenith": "全力",
"sinisteaPhony": "赝品", "sinisteaPhony": "赝品",
"sinisteaAntique": "真品", "sinisteaAntique": "真品",
"milceryVanillaCream": "Vanilla Cream",
"milceryRubyCream": "Ruby Cream",
"milceryMatchaCream": "Matcha Cream",
"milceryMintCream": "Mint Cream",
"milceryLemonCream": "Lemon Cream",
"milcerySaltedCream": "Salted Cream",
"milceryRubySwirl": "Ruby Swirl",
"milceryCaramelSwirl": "Caramel Swirl",
"milceryRainbowSwirl": "Rainbow Swirl",
"eiscueNoIce": "解凍頭", "eiscueNoIce": "解凍頭",
"indeedeeMale": "雄性", "indeedeeMale": "雄性",
"indeedeeFemale": "雌性", "indeedeeFemale": "雌性",
"morpekoFullBelly": "滿腹花紋", "morpekoFullBelly": "滿腹花紋",
"morpekoHangry": "Hangry",
"zacianHeroOfManyBattles": "百戰勇者", "zacianHeroOfManyBattles": "百戰勇者",
"zacianCrowned": "Crowned",
"zamazentaHeroOfManyBattles": "百戰勇者", "zamazentaHeroOfManyBattles": "百戰勇者",
"zamazentaCrowned": "Crowned",
"kubfuSingleStrike": "Single Strike",
"kubfuRapidStrike": "Rapid Strike",
"zarudeDada": "老爹", "zarudeDada": "老爹",
"calyrexIce": "Ice Rider",
"calyrexShadow": "Shadow Rider",
"basculinMale": "Male",
"basculinFemale": "Female",
"enamorusIncarnate": "化身", "enamorusIncarnate": "化身",
"enamorusTherian": "Therian",
"lechonkMale": "Male",
"lechonkFemale": "Female",
"tandemausFour": "Family of Four",
"tandemausThree": "Family of Three",
"squawkabillyGreenPlumage": "綠羽毛", "squawkabillyGreenPlumage": "綠羽毛",
"squawkabillyBluePlumage": "藍羽毛", "squawkabillyBluePlumage": "藍羽毛",
"squawkabillyYellowPlumage": "黃羽毛", "squawkabillyYellowPlumage": "黃羽毛",
"squawkabillyWhitePlumage": "白羽毛", "squawkabillyWhitePlumage": "白羽毛",
"finizenZero": "Zero",
"finizenZero": "Hero",
"tatsugiriCurly": "上弓姿勢", "tatsugiriCurly": "上弓姿勢",
"tatsugiriDroopy": "下垂姿勢", "tatsugiriDroopy": "下垂姿勢",
"tatsugiriStretchy": "平挺姿勢", "tatsugiriStretchy": "平挺姿勢",
"dunsparceTwo": "Two-Segment",
"dunsparceThree": "Three-Segment",
"gimmighoulChest": "寶箱形態", "gimmighoulChest": "寶箱形態",
"gimmighoulRoaming": "徒步形態", "gimmighoulRoaming": "徒步形態",
"koraidonApexBuild": "頂尖形態", "koraidonApexBuild": "頂尖形態",
@ -164,6 +241,19 @@
"miraidonGlideMode":"滑翔模式", "miraidonGlideMode":"滑翔模式",
"poltchageistCounterfeit": "冒牌貨", "poltchageistCounterfeit": "冒牌貨",
"poltchageistArtisan": "高檔貨", "poltchageistArtisan": "高檔貨",
"poltchageistUnremarkable": "Unremarkable",
"poltchageistMasterpiece": "Masterpiece",
"ogerponTealMask": "Teal Mask",
"ogerponTealMaskTera": "Teal Mask Terastallized",
"ogerponWellspringMask": "Wellspring Mask",
"ogerponWellspringMaskTera": "Wellspring Mask Terastallized",
"ogerponHearthflameMask": "Hearthflame Mask",
"ogerponHearthflameMaskTera": "Hearthflame Mask Terastallized",
"ogerponCornerstoneMask": "Cornerstone Mask",
"ogerponCornerstoneMaskTera": "Cornerstone Mask Terastallized",
"terpagosTerastal": "Terastal",
"terpagosStellar": "Stellar",
"galarDarumakaZen": "Zen",
"paldeaTaurosCombat": "鬥戰種", "paldeaTaurosCombat": "鬥戰種",
"paldeaTaurosBlaze": "火熾種", "paldeaTaurosBlaze": "火熾種",
"paldeaTaurosAqua": "水瀾種" "paldeaTaurosAqua": "水瀾種"